We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29846c8 commit 7ed8569Copy full SHA for 7ed8569
docker-compose.yml
@@ -17,6 +17,7 @@ services:
17
- ./nginx/nginx.conf:/etc/nginx/conf.d/nginx.conf:ro
18
- ./certbot/www/:/var/www/certbot/:ro
19
- ./certbot/conf/:/etc/nginx/ssl/:ro
20
+ - ./static:/usr/src/app/static
21
ports:
22
- 80:80
23
- 443:443
nginx/nginx.conf
@@ -98,7 +98,7 @@ server {
98
}
99
100
location /static/ {
101
- alias /usr/src/app/static//;
+ alias /usr/src/app/static/;
102
103
104
0 commit comments