31 lines
540 B
Nginx Configuration File
31 lines
540 B
Nginx Configuration File
user root;
|
|
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
server {
|
|
listen 8980;
|
|
server_name 127.0.0.1;
|
|
client_max_body_size 200m;
|
|
|
|
location / {
|
|
root /usr/local/web;
|
|
index index.html;
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root html;
|
|
}
|
|
|
|
}
|
|
} |