You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
404 B
25 lines
404 B
worker_processes auto;
|
|
|
|
events {
|
|
worker_connections 8000;
|
|
multi_accept on;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80 default ipv6only=on;
|
|
|
|
charset UTF-8;
|
|
client_max_body_size 200M;
|
|
|
|
root /opt/site;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|
|
} |