21 lines
546 B
Plaintext
21 lines
546 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name mailman2-oneskyit.localhost mailman2.oneskyit.com;
|
|
|
|
access_log /logs/nginx/access_oneskyit_mailman2.log;
|
|
|
|
index index.php;
|
|
|
|
location / {
|
|
proxy_pass http://mailman2:80;
|
|
proxy_pass_header Content-Type;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade; # allow websockets
|
|
proxy_pass_header Connection;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|