2016-09-28 13:33:28 +00:00
|
|
|
# This example sets up mailtrain.org/www.mailtrain.org virtual domains
|
|
|
|
# for Nginx and proxies requests for these domains to localhost port 3000
|
|
|
|
|
2016-04-04 12:36:30 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
|
|
|
|
server_name mailtrain.org www.mailtrain.org;
|
|
|
|
access_log /var/log/nginx/mailtrain.log;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header HOST $http_host;
|
|
|
|
proxy_set_header X-NginX-Proxy true;
|
|
|
|
|
|
|
|
proxy_pass http://127.0.0.1:3000;
|
|
|
|
proxy_redirect off;
|
|
|
|
}
|
|
|
|
}
|