frontend-next base layout

This commit is contained in:
0xJacky 2022-07-30 14:53:33 +08:00
parent 8711928ed1
commit c41a054c8c
109 changed files with 12353 additions and 188 deletions

13
resources/demo/ojbk.me Normal file
View file

@ -0,0 +1,13 @@
server {
listen 80;
listen [::]:80;
server_name ojbk.me;
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:9180;
}
}