nextcloud -> cloud (not commited properly)

This commit is contained in:
root 2024-09-06 09:41:40 +02:00
parent 43c7c59547
commit b054466a80
2 changed files with 12 additions and 6 deletions

View file

@ -13,9 +13,10 @@ services:
- POSTGRES_USER=nextcloud - POSTGRES_USER=nextcloud
- "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}" - "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}"
- "POSTGRES_HOST=10.128.0.95:5432" - "POSTGRES_HOST=10.128.0.95:5432"
- "NEXTCLOUD_URL=nextcloud.auro.re" - "NEXTCLOUD_URL=cloud.auro.re"
- "NEXTCLOUD_TRUSTED_DOMAINS=nextcloud.auro.re" - "NEXTCLOUD_TRUSTED_DOMAINS=cloud.auro.re nextcloud.auro.re"
- "OVERWRITEHOST=nextcloud.auro.re" - "TRUSTED_PROXIES=45.66.111.206 2a09:6840:215::1:1 127.0.0.0/8 ::1/128"
- "OVERWRITEHOST=cloud.auro.re"
- "NEXTCLOUD_ADMIN_USER=${NEXTCLOUD_ADMIN_USER}" - "NEXTCLOUD_ADMIN_USER=${NEXTCLOUD_ADMIN_USER}"
- "NEXTCLOUD_ADMIN_PASSWORD=${NEXTCLOUD_ADMIN_PASSWORD}" - "NEXTCLOUD_ADMIN_PASSWORD=${NEXTCLOUD_ADMIN_PASSWORD}"
@ -25,7 +26,7 @@ services:
volumes: volumes:
- ./nextcloud/html:/var/www/html:ro - ./nextcloud/html:/var/www/html:ro
environment: environment:
- NGINX_HOST=nextcloud.auro.re - NGINX_HOST=cloud.auro.re
- NGINX_PORT=80 - NGINX_PORT=80
ports: ports:
- "8080:80" - "8080:80"

View file

@ -24,10 +24,15 @@ http {
keepalive_timeout 65; keepalive_timeout 65;
set_real_ip_from 45.66.111.0/24;
set_real_ip_from 10.0.0.0/8; set_real_ip_from 10.0.0.0/8;
set_real_ip_from 172.16.0.0/12; set_real_ip_from 172.16.0.0/12;
set_real_ip_from 192.168.0.0/16; set_real_ip_from 192.168.0.0/16;
real_ip_header X-Real-IP; #real_ip_header X-Real-IP;
real_ip_header X-Forwarded-For;
#real_ip_recursive on;
#proxy_set_header X-Forwarded-For "$remote_addr";
#gzip on; #gzip on;
@ -139,7 +144,7 @@ http {
# Adding the cache control header for js, css and map files # Adding the cache control header for js, css and map files
# Make sure it is BELOW the PHP block # Make sure it is BELOW the PHP block
location ~ \.(?:css|js|woff2?|svg|gif|map)$ { location ~ \.(?:css|js|woff2?|svg|gif|map|mjs)$ {
try_files $uri /index.php$request_uri; try_files $uri /index.php$request_uri;
add_header Cache-Control "public, max-age=15778463"; add_header Cache-Control "public, max-age=15778463";
# Add headers to serve security related headers (It is intended to # Add headers to serve security related headers (It is intended to