add GoToSocial in a draft state

does not federate properly
see #3 (comment)
This commit is contained in:
Luna 2023-01-22 19:44:54 -03:00
parent 7260b2bed8
commit 6d4c031fb6
4 changed files with 49 additions and 0 deletions

View file

@ -114,4 +114,29 @@ http {
}
}
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;
root /mnt/none;
index index.html index.htm;
server_name gts.pubtester.example.net;
absolute_redirect off;
server_name_in_redirect off;
ssl_certificate /etc/nginx/cert.pem;
ssl_certificate_key /etc/nginx/key.pem;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://gotosocial:8080;
}
}
}