This commit is contained in:
parent
428b5c70bc
commit
51bbdd42a2
2 changed files with 15 additions and 1 deletions
12
resources/z9/dooris/nginx/http_handler.conf
Normal file
12
resources/z9/dooris/nginx/http_handler.conf
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
server {
|
||||
listen 80 default_server;
|
||||
listen [::]:80 default_server;
|
||||
|
||||
location / {
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
|
||||
location /.well-known/acme-challenge/ {
|
||||
proxy_pass http://127.0.0.1:31820/.well-known/acme-challenge/;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue