feat: 添加 sso-ai.conf nginx 反向代理配置

This commit is contained in:
gitadmin 2026-06-29 18:40:02 +08:00
parent 8fac183661
commit 3804c3390f
1 changed files with 15 additions and 0 deletions

15
conf.d/sso-ai.conf Normal file
View File

@ -0,0 +1,15 @@
server {
listen 443 ssl;
server_name sso.tlyq.ai;
ssl_certificate /etc/letsencrypt/live/oa.tlyq.ai/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/oa.tlyq.ai/privkey.pem;
location / {
proxy_pass http://authelia:9091;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
}
}