[READ-ONLY] Mirror of https://github.com/thoda-dev/scripts. custom scripts
0

Configure Feed

Select the types of activity you want to include in your feed.

Update set_new_nginx_app.sh

Thomas (Oct 5, 2025, 2:36 PM +0200) 6838c886 cdebe2b4

+11
+11
set_new_nginx_app.sh
··· 139 139 proxy_set_header Connection 'upgrade'; 140 140 proxy_set_header Host \$host; 141 141 proxy_cache_bypass \$http_upgrade; 142 + proxy_redirect off; 143 + proxy_set_header X-Real-IP \$remote_addr; 144 + proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; 145 + proxy_set_header X-Real-IP \$remote_addr; 146 + 147 + # Pour les requêtes de streaming 148 + proxy_buffering off; 149 + proxy_cache off; 150 + proxy_request_buffering off; 151 + proxy_read_timeout 3600s; 152 + proxy_send_timeout 3600s; 142 153 } 143 154 } 144 155 EOF