2018-01-26 21:25:03 +01:00
|
|
|
server {
|
2018-01-27 22:36:57 +01:00
|
|
|
listen [::]:8011 ipv6only=off;
|
|
|
|
listen [::]:8411 ssl http2 ipv6only=off;
|
2018-01-26 21:25:03 +01:00
|
|
|
|
|
|
|
access_log /var/log/nginx/sigmah.access.log;
|
|
|
|
error_log /var/log/nginx/sigmah.error.log;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Host $host:$server_port;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
proxy_pass http://127.0.0.1:9015;
|
|
|
|
}
|
|
|
|
}
|