Spaces:
Sleeping
Sleeping
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 { | |
## | |
# Basic Settings | |
## | |
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; | |
# server_tokens off; | |
# server_names_hash_bucket_size 64; | |
# server_name_in_redirect off; | |
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 Settings | |
## | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE | |
ssl_prefer_server_ciphers on; | |
## | |
# Gzip Settings | |
## | |
gzip on; | |
# gzip_vary on; | |
# gzip_proxied any; | |
# gzip_comp_level 6; | |
# gzip_buffers 16 8k; | |
# gzip_http_version 1.1; | |
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; | |
## | |
# Virtual Host Configs | |
## | |
#include /etc/nginx/conf.d/*.conf; | |
#include /etc/nginx/sites-enabled/*; | |
server { | |
listen 7860; | |
access_log /tmp/access.log; | |
server_name _; | |
root /var/www/; | |
index index.html; | |
location /stable-#COMMIT# { | |
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; | |
#try_files $uri $uri/ =404; | |
} | |
} | |
} |