fix: edit btn not navigating to edit page

This commit is contained in:
0xJacky 2023-04-10 11:13:39 +08:00
parent 88daebbb75
commit dd6c366af3
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
3 changed files with 6 additions and 22 deletions

View file

@ -1,24 +1,5 @@
server {
listen 80;
listen [::]:80;
server_name test.jackyu.cn;
location /.well-known/acme-challenge {
proxy_set_header Host $host;
proxy_set_header X-Real_IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr:$remote_port;
proxy_pass http://127.0.0.1:5002;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name test.jackyu.cn;
ssl_certificate /etc/nginx/ssl/test.jackyu.cn/fullchain.cer;
ssl_certificate_key /etc/nginx/ssl/test.jackyu.cn/private.key;
location /.well-known/acme-challenge {
proxy_set_header Host $host;
proxy_set_header X-Real_IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr:$remote_port;
proxy_pass http://127.0.0.1:5002;
}
server_name test;
}