You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
740 B
Nginx Configuration File
36 lines
740 B
Nginx Configuration File
worker_processes auto;
|
|
worker_cpu_affinity auto;
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
pid /var/run/nginx.pid;
|
|
|
|
#daemon off;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
# rewrite_log on;
|
|
include mime.types;
|
|
default_type application/json;
|
|
access_log /var/log/nginx/access.log;
|
|
sendfile on;
|
|
# tcp_nopush on;
|
|
keepalive_timeout 3;
|
|
# tcp_nodelay on;
|
|
gzip on;
|
|
client_max_body_size 1m;
|
|
|
|
server {
|
|
listen 8080 default_server;
|
|
server_name _;
|
|
|
|
location / {
|
|
index index.html;
|
|
root /var/www/html;
|
|
try_files $uri $uri/ /index.html;
|
|
absolute_redirect off;
|
|
}
|
|
}
|
|
}
|