diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/doc/docker-traefik.md | 4 | ||||
-rw-r--r-- | support/nginx/peertube | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/support/doc/docker-traefik.md b/support/doc/docker-traefik.md index eb480ec53..4c03cce42 100644 --- a/support/doc/docker-traefik.md +++ b/support/doc/docker-traefik.md | |||
@@ -24,7 +24,7 @@ touch ./docker-volume/traefik/acme.json | |||
24 | ``` | 24 | ``` |
25 | Needs to have file mode 600: | 25 | Needs to have file mode 600: |
26 | ```shell | 26 | ```shell |
27 | chmod 600 ./docker-volume/traefik/acme.json | 27 | chmod 600 ./docker-volume/traefik/acme.json |
28 | ``` | 28 | ``` |
29 | 29 | ||
30 | #### Update the reverse proxy configuration | 30 | #### Update the reverse proxy configuration |
@@ -40,5 +40,5 @@ More at: https://docs.traefik.io/v1.7 | |||
40 | #### Run with traefik | 40 | #### Run with traefik |
41 | 41 | ||
42 | ```shell | 42 | ```shell |
43 | docker-compose -f docker-compose.yml docker-compose.traefik.yml up -d | 43 | docker-compose -f docker-compose.yml -f docker-compose.traefik.yml up -d |
44 | ``` | 44 | ``` |
diff --git a/support/nginx/peertube b/support/nginx/peertube index 7f2c0f263..e58659030 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube | |||
@@ -58,6 +58,16 @@ server { | |||
58 | } | 58 | } |
59 | 59 | ||
60 | # Bypass PeerTube for performance reasons. Could be removed | 60 | # Bypass PeerTube for performance reasons. Could be removed |
61 | # Should be consistent with client-overrides assets list in /server/controllers/client.ts | ||
62 | location ~ ^/client/(assets/images/(icons/icon-36x36\.png|icons/icon-48x48\.png|icons/icon-72x72\.png|icons/icon-96x96\.png|icons/icon-144x144\.png|icons/icon-192x192\.png|icons/icon-512x512\.png|logo\.svg|favicon\.png))$ { | ||
63 | add_header Cache-Control "public, max-age=31536000, immutable"; | ||
64 | |||
65 | root /var/www/peertube/storage/client-overrides; | ||
66 | |||
67 | try_files /$1 $uri; | ||
68 | } | ||
69 | |||
70 | # Bypass PeerTube for performance reasons. Could be removed | ||
61 | location ~ ^/client/(.*\.(js|css|png|svg|woff2|otf|ttf|woff|eot))$ { | 71 | location ~ ^/client/(.*\.(js|css|png|svg|woff2|otf|ttf|woff|eot))$ { |
62 | add_header Cache-Control "public, max-age=31536000, immutable"; | 72 | add_header Cache-Control "public, max-age=31536000, immutable"; |
63 | 73 | ||