nginx-ktls/rootfs/etc/nginx/nginx.conf
2019-05-29 22:22:39 +02:00

32 lines
440 B
Nginx Configuration File
Executable file

user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
sendfile on;
keepalive_timeout 65;
include mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
error_page 500 502 503 504 /50x.html;
location / {
root /etc/nginx/html;
index index.html;
}
location = /stub_status {
stub_status;
}
location = /50x.html {
root /etc/nginx/html;
}
}
}