Nginx 프록시 설정

DMG -> Private (리버스 프록시) upstream api { server 11.11.11.11:9999; } ​ server { listen 80; server_name localhost; ​ location /dx { proxy_pass http://api; proxy_read_timeout 300s; proxy_connect_timeout 75s; root /; index index.html index.htm; } ​ ​ Private -> DMG (포워드 프록시) server { listen 18881; server_name localhost; ​ #charset koi8-r; access_log /nx_log/outbound/access.log main; error_log /nx_log/outbound/error.log; […]