pref: update nginx config
This commit is contained in:
parent
13e6d63d62
commit
c4e49108c9
6
nginx/conf.d/default.conf
Normal file
6
nginx/conf.d/default.conf
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
|
return 403;
|
||||||
|
}
|
@ -1,10 +1,9 @@
|
|||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
listen [::]:80;
|
listen [::]:80;
|
||||||
server_name test.thehrz.net;
|
server_name 19yuke2.cn;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
root /usr/local/nginx/html/;
|
return 301 https://www.19yuke2.cn;
|
||||||
try_files $uri $uri/ /index.html;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
10
nginx/conf.d/www.conf
Normal file
10
nginx/conf.d/www.conf
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name www.19yuke2.cn;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/local/nginx/html/;
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user