| error_log /tmp/error.log warn; |
| worker_processes auto; |
| pid /tmp/nginx.pid; |
| include /etc/nginx/modules-enabled/*.conf; |
|
|
| events { |
| worker_connections 768; |
| multi_accept on; |
| } |
|
|
| http { |
| |
| |
| |
|
|
| sendfile on; |
| tcp_nopush on; |
| tcp_nodelay on; |
| keepalive_timeout 65; |
| types_hash_max_size 2048; |
| proxy_buffering off; |
| client_max_body_size 800m; |
| large_client_header_buffers 4 32k; |
| |
|
|
| |
| |
|
|
| include /etc/nginx/mime.types; |
|
|
| default_type application/octet-stream; |
| proxy_temp_path /tmp/proxy_temp; |
| client_body_temp_path /tmp/client_temp; |
| fastcgi_temp_path /tmp/fastcgi_temp; |
| uwsgi_temp_path /tmp/uwsgi_temp; |
| scgi_temp_path /tmp/scgi_temp; |
|
|
| |
| |
| |
|
|
| ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; |
| ssl_prefer_server_ciphers on; |
|
|
|
|
| |
| |
| |
|
|
| gzip on; |
|
|
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| |
| |
| server { |
| listen 7860; |
|
|
| access_log /tmp/access.log; |
| server_name _; |
|
|
| root /var/www/; |
| index index.html; |
| location /stable- |
| proxy_pass http://127.0.0.1:5050; |
| proxy_http_version 1.1; |
| proxy_set_header Upgrade $http_upgrade; |
| proxy_set_header Connection "Upgrade"; |
| proxy_set_header Host $host; |
| proxy_read_timeout 86400; |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
| } |
|
|
| location /vscode/ { |
| auth_basic "Restricted Content"; |
| auth_basic_user_file /home/user/app/ngpasswd; |
| proxy_pass http://127.0.0.1:5050/; |
| proxy_http_version 1.1; |
| proxy_set_header Upgrade $http_upgrade; |
| proxy_set_header Connection "Upgrade"; |
| proxy_set_header Host $host; |
| proxy_read_timeout 86400; |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
| } |
|
|
| location @vscode { |
| return 302 https://$host/vscode/?folder=/home/user/app; |
| } |
|
|
| location / { |
| error_page 502 = @vscode; |
| proxy_pass http://127.0.0.1:#PORT#; |
| proxy_http_version 1.1; |
| proxy_set_header Upgrade $http_upgrade; |
| proxy_set_header Connection "Upgrade"; |
| proxy_set_header Host $host; |
| proxy_read_timeout 86400; |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
| |
| } |
| } |
| } |