解决了子域名无法访问和会访问到管理后台的问题

This commit is contained in:
yoh0o
2024-06-23 22:51:48 +08:00
parent cb8dc15738
commit d1e70c33db
3 changed files with 4 additions and 7 deletions
+2 -5
View File
@@ -1,15 +1,12 @@
server {
listen 80;
server_name localhost $ADMIN_DOMAIN;
server_name localhost $ADMIN_DOMAIN *.$DNS_DOMAIN;
uwsgi_pass_request_headers on;
if ($request_uri ~* "^/$") {
return 302 $scheme://$http_host/login;
}
location = /favicon.ico {
access_log off; log_not_found off;
}
location /static/ {
alias /dnslog/static/;
}