server { listen 80 proxy_protocol; server_name domain.example; set_real_ip_from 0.0.0.0/0; real_ip_header proxy_protocol; rewrite_log on; return 301 https://domain.example; } server { listen 443 ssl proxy_protocol; set_real_ip_from 0.0.0.0/0; real_ip_header proxy_protocol; server_name domain.example; client_max_body_size 0; rewrite_log on; proxy_ssl_server_name on; ssl_dhparam /etc/ssl/keys/domain.example/dhparam.pem; ssl_certificate /etc/ssl/keys/fullchain.pem; ssl_certificate_key /etc/ssl/keys/key.pem; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4 !kDHE"; ssl_session_cache shared:SSL:50m; ssl_session_timeout 5m; ssl_stapling on; location / { limit_except GET HEAD { allow 192.168.109.1; allow 192.168.109.2; deny all; } proxy_pass http://domain-app:80; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Upgrade $http_upgrade; proxy_cookie_path / /; proxy_set_header Connection $http_connection; proxy_connect_timeout 300; proxy_send_timeout 300; proxy_read_timeout 300; proxy_next_upstream off; proxy_redirect off; proxy_buffering off; } location example2 { proxy_pass http://example-app2-modified:80; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Upgrade $http_upgrade; proxy_cookie_path example2 example2; proxy_set_header Connection $http_connection; proxy_connect_timeout 300; proxy_send_timeout 300; proxy_read_timeout 300; proxy_next_upstream off; proxy_redirect off; proxy_buffering off; } # location end location example { limit_except GET HEAD { allow 192.168.105.1 allow 192.168.106.1 allow 192.168.107.1 deny all; } proxy_pass http://example-app:80; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Upgrade $http_upgrade; proxy_cookie_path example example; proxy_set_header Connection $http_connection; proxy_connect_timeout 300; proxy_send_timeout 300; proxy_read_timeout 300; proxy_next_upstream off; proxy_redirect off; proxy_buffering off; } # location end }