0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-01-03 03:10:04 -05:00

no longer needed

This commit is contained in:
dragongoose 2023-11-30 19:26:22 -05:00
parent 6169584f6e
commit a2ec7e7980
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5
3 changed files with 0 additions and 26 deletions

Binary file not shown.

Binary file not shown.

View file

@ -1,26 +0,0 @@
server {
listen 443 ssl;
server_name twitch-api.seitan-ayoub.lol;
ssl_certificate /etc/nginx/certs/_.seitan-ayoub.lol.crt;
ssl_certificate_key /etc/nginx/certs/_.seitan-ayoub.lol.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
set $backend "http://safetwitch-backend:7000";
location /{
proxy_pass $backend;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
}
}
upstream chat {
ip_hash;
server safetwitch-backend:7000;
}