Merge pull request #405 from nextcloud/fix-examples
Fix the "with-nginx-proxy-self-signed-ssl" example
This commit is contained in:
commit
39d259adfc
@ -3,15 +3,18 @@ version: '3'
|
|||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
image: mariadb
|
image: mariadb
|
||||||
restart: unless-stopped
|
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||||
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- db:/var/lib/mysql
|
- db:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=
|
||||||
env_file:
|
env_file:
|
||||||
- db.env
|
- db.env
|
||||||
|
|
||||||
app:
|
app:
|
||||||
image: nextcloud:fpm
|
image: nextcloud:fpm
|
||||||
restart: unless-stopped
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud:/var/www/html
|
- nextcloud:/var/www/html
|
||||||
environment:
|
environment:
|
||||||
@ -22,28 +25,24 @@ services:
|
|||||||
- db
|
- db
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: nginx
|
build: ./web
|
||||||
restart: unless-stopped
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud:/var/www/html:ro
|
- nextcloud:/var/www/html:ro
|
||||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
||||||
environment:
|
environment:
|
||||||
- VIRTUAL_HOST=servhostname.local
|
- VIRTUAL_HOST=
|
||||||
depends_on:
|
depends_on:
|
||||||
- app
|
- app
|
||||||
- proxy
|
|
||||||
networks:
|
networks:
|
||||||
- proxy-tier
|
- proxy-tier
|
||||||
- default
|
- default
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
image: jwilder/nginx-proxy:alpine
|
build: ./proxy
|
||||||
restart: unless-stopped
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 80:80
|
||||||
- 443:443
|
- 443:443
|
||||||
environment:
|
|
||||||
- MAX_UPLOAD_SIZE=10GB
|
|
||||||
volumes:
|
volumes:
|
||||||
- certs:/etc/nginx/certs:ro
|
- certs:/etc/nginx/certs:ro
|
||||||
- vhost.d:/etc/nginx/vhost.d
|
- vhost.d:/etc/nginx/vhost.d
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
FROM jwilder/nginx-proxy:alpine
|
||||||
|
|
||||||
|
COPY uploadsize.conf /etc/nginx/conf.d/uploadsize.conf
|
@ -0,0 +1 @@
|
|||||||
|
client_max_body_size 10G;
|
@ -0,0 +1,3 @@
|
|||||||
|
FROM nginx
|
||||||
|
|
||||||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
Loading…
Reference in New Issue
Block a user