File automx2-nginx.conf of Package automx2
# NGINX example configuration snippet to forward incoming requests to automx2.
# vim:ts=4:et:ft=nginx
http {
server {
listen *:80;
listen [::]:80;
server_name autoconfig.example.com autodiscover.example.com;
location /initdb {
# Database may only be initialised from localhost
allow 127.0.0.1;
deny all;
}
location / {
# Forward all traffic to local automx2 service
proxy_pass http://127.0.0.1:4243/;
proxy_set_header Host $host;
# Set config parameter proxy_count=1 to have automx2 process these headers
proxy_set_header X-Forwarded-Proto http;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
}
}