Compare commits

..

6 Commits

Author SHA1 Message Date
Thurloat 0f176aa7ca Merge branch 'CVE' of adasauce/nextcloud-docker into master 5 years ago
Adasauce 84997bfb9a
fix nginx configuration to protect against CVE-2019-11043. 5 years ago
Thurloat 31e5dc7d45 Merge branch 'postgres11' of adasauce/nextcloud-docker into master 5 years ago
Adasauce b96b3d1091
Lock to Postgres 11 for now 5 years ago
Thurloat 8c9c91e755 Merge branch 'cronjob' of adasauce/nextcloud-docker into master 6 years ago
Adasauce 8c5a109eb0
Add a 'thumbnailer container' 6 years ago
  1. 22
      docker-compose.yml
  2. 16
      web/nginx.conf

@ -2,7 +2,7 @@ version: '3'
services: services:
db: db:
image: postgres:alpine image: postgres:11-alpine
restart: always restart: always
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data
@ -46,11 +46,29 @@ services:
while /bin/true; do while /bin/true; do
echo Starting cron echo Starting cron
su -s "/bin/sh" -c "/usr/local/bin/php /var/www/html/cron.php" www-data su -s "/bin/sh" -c "/usr/local/bin/php /var/www/html/cron.php" www-data
echo $$(date) - Running cron finished echo \$$(date) - Running cron finished
sleep 900 sleep 900
done done
EOF' EOF'
thumbnailer:
image: nextcloud:fpm-alpine
restart: always
volumes:
- nextcloud:/var/www/html
depends_on:
- app
entrypoint: |
sh -c 'sh -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while /bin/true; do
echo Starting thumbnail cron
su -s "/bin/sh" -c "/usr/local/bin/php occ preview:pre-generate" www-data
echo \$$(date) - Running thumbnail cron finished
sleep 60
done
EOF'
proxy: proxy:
build: ./proxy build: ./proxy
restart: always restart: always

@ -94,7 +94,7 @@ http {
#pagespeed off; #pagespeed off;
location / { location / {
rewrite ^ /index.php$request_uri; rewrite ^ /index.php;
} }
location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ { location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
@ -104,14 +104,16 @@ http {
deny all; deny all;
} }
location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/) { location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+)\.php(?:$|\/) {
fastcgi_split_path_info ^(.+\.php)(/.*)$; fastcgi_split_path_info ^(.+?\.php)(\/.*|)$;
try_files $fastcgi_script_name =404;
include fastcgi_params; include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPTFILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATHINFO $fastcgi_path_info;
# fastcgi_param HTTPS on; fastcgi_param HTTPS on;
#Avoid sending the security headers twice # Avoid sending the security headers twice
fastcgi_param modHeadersAvailable true; fastcgi_param modHeadersAvailable true;
# Enable pretty urls
fastcgi_param front_controller_active true; fastcgi_param front_controller_active true;
fastcgi_pass php-handler; fastcgi_pass php-handler;
fastcgi_intercept_errors on; fastcgi_intercept_errors on;

Loading…
Cancel
Save