upstream bommom-bommom { server 127.0.0.1:5015; } server { listen 80; listen [::]:80; server_name bommom.com www.bommom.com bommom.memeschemes.com; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; location / { root /srv/http/default/www/; 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_redirect off; proxy_pass http://bommom-bommom; } }