22 lines
377 B
Nginx Configuration File
22 lines
377 B
Nginx Configuration File
pid /tmp/nginx.pid;
|
|
|
|
events {}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log off;
|
|
error_log /dev/stderr warn;
|
|
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
}
|