robosats/nodeapp/nginx.conf
2023-05-18 13:29:49 +00:00

89 lines
2.3 KiB
Nginx Configuration File

daemon off;
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
large_client_header_buffers 4 64K;
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 /dev/stdout main;
error_log /dev/stderr warn;
sendfile on;
keepalive_timeout 65;
# Every robosat coordinators socat tor bridge is an upstream.
# So far only the experimental coordinator is available.
upstream experimental_coordinator {
server localhost:81;
}
server {
listen 12596;
server_name robosats_client;
location / {
root /usr/src/robosats;
try_files $uri $uri/ /basic.html;
index basic.html;
}
location /pro {
root /usr/src/robosats;
try_files $uri $uri/ /pro.html;
index pro.html;
}
location /static/ {
alias /usr/src/robosats/static/;
autoindex on;
}
# we pass avatars, websockets and api to the coordinator(s) socat bridges
location /static/assets/avatars/ {
proxy_pass http://experimental_coordinator;
}
location /api/ {
proxy_pass http://experimental_coordinator;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location /ws/ {
proxy_pass http://experimental_coordinator;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location = /favicon.ico {
alias /usr/src/robosats/static/assets/images/favicon-96x96.png;
}
# do not log healtchecks made against "/selfhosted"
location /selfhosted {
access_log off;
return 200 "OK";
}
}
}