|
|
@@ -0,0 +1,50 @@
|
|
|
+user root;
|
|
|
+worker_processes auto;
|
|
|
+error_log /var/log/nginx/error.log;
|
|
|
+pid /run/nginx.pid;
|
|
|
+
|
|
|
+# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
|
|
|
+include /usr/share/nginx/modules/*.conf;
|
|
|
+
|
|
|
+events {
|
|
|
+ worker_connections 1024;
|
|
|
+}
|
|
|
+
|
|
|
+http {
|
|
|
+ log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
+ '$status $body_bytes_sent "$http_referer" '
|
|
|
+ '"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
+
|
|
|
+ access_log /var/log/nginx/access.log main;
|
|
|
+
|
|
|
+ sendfile on;
|
|
|
+ tcp_nopush on;
|
|
|
+ tcp_nodelay on;
|
|
|
+ keepalive_timeout 65;
|
|
|
+ types_hash_max_size 4096;
|
|
|
+
|
|
|
+ include /etc/nginx/mime.types;
|
|
|
+ default_type application/octet-stream;
|
|
|
+
|
|
|
+ server
|
|
|
+ {
|
|
|
+ listen 8082;
|
|
|
+ server_name localhost;
|
|
|
+ client_max_body_size 100m;
|
|
|
+ index index.html;
|
|
|
+ root /usr/share/nginx/html;
|
|
|
+
|
|
|
+ location /prod-api/
|
|
|
+ {
|
|
|
+ rewrite /api(.*) $1 break;
|
|
|
+ proxy_pass http://127.0.0.1:8086/;
|
|
|
+ proxy_set_header Host $host;
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
+ proxy_http_version 1.1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|