simplex2/nginx.conf

33 lines
479 B
Nginx Configuration File
Raw Normal View History

2018-03-13 09:15:38 +00:00
worker_processes ${{NUM_WORKERS}};
error_log stderr notice;
2018-03-16 23:51:12 +00:00
daemon on;
2018-03-13 09:15:38 +00:00
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
server {
listen ${{PORT}};
lua_code_cache ${{CODE_CACHE}};
location / {
default_type text/html;
content_by_lua '
require("lapis").serve("app")
';
}
location /static/ {
alias static/;
}
location /favicon.ico {
alias static/favicon.ico;
}
}
}