feat: takahe fedi

This commit is contained in:
Strix 2023-11-24 16:17:39 +01:00
parent 63665f2701
commit f98373ca7f
No known key found for this signature in database
GPG key ID: 5F35B3B8537287A7
2 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,13 @@
server {
listen 80;
server_name takahe.ixvd.net;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port 443;
proxy_pass http://takahe:8000;
}
}