mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
48 lines
859 B
Nginx Configuration File
48 lines
859 B
Nginx Configuration File
|
# run nginx in foreground
|
||
|
daemon off;
|
||
|
|
||
|
#user nobody;
|
||
|
worker_processes 1;
|
||
|
|
||
|
#error_log logs/error.log;
|
||
|
error_log stderr notice;
|
||
|
#error_log logs/error.log info;
|
||
|
|
||
|
#pid logs/nginx.pid;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
access_log /dev/stdout;
|
||
|
|
||
|
sendfile on;
|
||
|
|
||
|
keepalive_timeout 65;
|
||
|
|
||
|
gzip on;
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
|
||
|
location / {
|
||
|
root html;
|
||
|
index index.html index.htm;
|
||
|
# redirect 404 to index
|
||
|
try_files $uri /index.html;
|
||
|
}
|
||
|
|
||
|
# redirect server error pages to the static page /50x.html
|
||
|
#
|
||
|
error_page 500 502 503 504 /50x.html;
|
||
|
location = /50x.html {
|
||
|
root html;
|
||
|
}
|
||
|
}
|
||
|
}
|