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 1151950 commit a9a6b62Copy full SHA for a9a6b62
.github/workflows/cd.yml
@@ -5,13 +5,8 @@ on:
5
push:
6
branches:
7
- 'main'
8
- - 'staging'
9
tags:
10
- 'v*'
11
- pull_request:
12
- branches:
13
- - 'main'
14
15
16
jobs:
17
build:
docker/nginx.prod.conf
@@ -18,11 +18,13 @@ http {
18
alias /usr/share/nginx/html/static/; # The nginx container's mounted volume.
19
expires 30d;
20
add_header Cache-Control public;
21
+ include /etc/nginx/mime.types;
22
}
23
24
# Serve user uploaded files
25
location /silo/ {
26
alias /usr/share/nginx/html/silo/; # The container's mounted volume.
27
28
29
30
# Proxy requests to the Django app running in gunicorn
0 commit comments