Finishing rename from Core to Yggdrasil

This commit is contained in:
2023-12-19 16:16:35 -06:00
parent 50167c0f03
commit cea66f285a
33 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
server {
listen 443 ssl http2;
server_name irc.aninix.net;
include conf/sec.conf;
include conf/default.csp.conf;
include conf/letsencrypt.conf;
location /
{
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:7778;
}
}