2019-11-06 10:58:06 +08:00
|
|
|
# For more information on configuration, see:
|
|
|
|
# * Official English Documentation: http://nginx.org/en/docs/
|
|
|
|
# * Official Russian Documentation: http://nginx.org/ru/docs/
|
|
|
|
|
2020-05-22 15:30:07 +08:00
|
|
|
user root;
|
2019-11-06 10:58:06 +08:00
|
|
|
worker_processes auto;
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
pid /run/nginx.pid;
|
|
|
|
|
|
|
|
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
|
|
|
|
include /usr/share/nginx/modules/*.conf;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
|
|
|
|
access_log /var/log/nginx/access.log main;
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
tcp_nopush on;
|
|
|
|
tcp_nodelay on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
types_hash_max_size 2048;
|
|
|
|
|
2020-05-22 15:30:07 +08:00
|
|
|
# include /etc/nginx/mime.types;
|
2019-11-06 10:58:06 +08:00
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
# Load modular configuration files from the /etc/nginx/conf.d directory.
|
|
|
|
# See http://nginx.org/en/docs/ngx_core_module.html#include
|
|
|
|
# for more information.
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
2020-05-22 15:30:07 +08:00
|
|
|
server_name domain; # 这里需要修改为你的
|
2019-11-06 10:58:06 +08:00
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
|
|
|
# Load configuration files for the default server block.
|
|
|
|
include /etc/nginx/default.d/*.conf;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
}
|
|
|
|
location ~ /.well-known {
|
|
|
|
allow all;
|
|
|
|
}
|
|
|
|
error_page 404 /404.html;
|
|
|
|
location = /40x.html {
|
|
|
|
}
|
|
|
|
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location = /50x.html {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
2020-05-22 15:30:07 +08:00
|
|
|
# ssl_certificate /etc/nginx/$1.crt;
|
|
|
|
# ssl_certificate_key /etc/nginx/$1.key;
|
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
|
|
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
server_name $1; # 这里需要修改
|
2019-11-06 10:58:06 +08:00
|
|
|
location / {
|
|
|
|
}
|
2020-05-22 15:30:07 +08:00
|
|
|
location /alone {proxy_redirect off;proxy_pass http://127.0.0.1:31299;proxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection "upgrade";proxy_set_header X-Real-IP $remote_addr;proxy_set_header Host $host;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;}
|
2019-11-06 10:58:06 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|