mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 15:28:06 +02:00
Make nginx volumes read-only
This commit is contained in:
parent
5b85e2cced
commit
42a76925a5
1 changed files with 3 additions and 3 deletions
|
@ -7,9 +7,9 @@ services:
|
|||
ports:
|
||||
- "127.0.0.1:${TLS_PORT:-443}:443"
|
||||
volumes:
|
||||
- "${TLS_PRIVATE_KEY_PATH}:/certs/nginx_key.pem"
|
||||
- "${TLS_CERTIFICATE_PATH}:/certs/nginx_certificate.pem"
|
||||
- "${NGINX_CONFIG_PATH}:/etc/nginx/nginx.conf"
|
||||
- "${TLS_PRIVATE_KEY_PATH}:/certs/nginx_key.pem:ro"
|
||||
- "${TLS_CERTIFICATE_PATH}:/certs/nginx_certificate.pem:ro"
|
||||
- "${NGINX_CONFIG_PATH}:/etc/nginx/nginx.conf:ro"
|
||||
restart: always
|
||||
container_name: nginx
|
||||
depends_on:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue