mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
59 lines
1.3 KiB
Nginx Configuration File
59 lines
1.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;
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
server_name robosats_web_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;
|
|
}
|
|
|
|
location /clearnetonion_verify {
|
|
alias /serve_misc/;
|
|
}
|
|
|
|
location = /favicon.ico {
|
|
alias /usr/src/robosats/static/assets/images/favicon-96x96.png;
|
|
}
|
|
}
|
|
} |