CT Nextcloud, z2mqtt and hass: Fixed bugs related to alpine release update

CT Nextcloud: Updated HTTP headers in Nginx config

CT hass: Fixed hacs installer and updated dependencies:
replaced  mariadb-connector-c-dev with mariadb-dev,
and added ffmpeg-dev

CT z2mqtt: replaced yarn with corepack
This commit is contained in:
2023-07-02 01:20:22 +02:00
parent 4c44a1ba09
commit 74f0880b23
4 changed files with 23 additions and 12 deletions

View File

@@ -37,12 +37,21 @@ http {
add_header Content-Type text/html;
return 200 '<html><head></head><body>To setup this container edit and run the FirstRun script `/opt/Setup/Scripts/FirstRun.sh`</body></html>';
#SetupBlockEnd
add_header Referrer-Policy "no-referrer" always;
add_header X-Download-Options "noopen" always;
add_header X-Permitted-Cross-Domain-Policies "none" always;
add_header X-Robots-Tag "noindex, nofollow" always;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
##Reverse proxy IP resolve
#set_real_ip_from <ReverseProxyIP>;
#real_ip_header X-Forwarded-For;
add_header Referrer-Policy "no-referrer" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-Download-Options "noopen" always;
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Permitted-Cross-Domain-Policies "none" always;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header X-XSS-Protection "1; mode=block" always;
fastcgi_send_timeout 36000;
fastcgi_read_timeout 36000;
fastcgi_hide_header X-Powered-By;
fastcgi_buffers 64 4K;
gzip on;