2015-01-22 11:04:17 +01:00
|
|
|
worker_processes 1;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
sendfile on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
log_format https_combined '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" HTTPS';
|
|
|
|
log_format http_combined '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" HTTP';
|
|
|
|
|
2020-05-29 19:13:57 +02:00
|
|
|
include /tmp/nginx/conf/*;
|
2016-03-25 17:51:56 +01:00
|
|
|
|
|
|
|
server {
|
|
|
|
listen *:80 default_server;
|
|
|
|
root /default;
|
|
|
|
index index.html;
|
|
|
|
location / {
|
|
|
|
try_files $uri /index.html;
|
|
|
|
}
|
|
|
|
}
|
2015-01-22 11:04:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
daemon on;
|
|
|
|
error_log /dev/stdout info;
|
|
|
|
|