Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
2815e21e
Commit
2815e21e
authored
Oct 05, 2017
by
Ryan Herbert
Browse files
Merge branch 'feature/cache_control' into 'dev'
Feature/cache control Closes
#2498
See merge request
!84
parents
c248d0d2
a0ee6395
Changes
2
Hide whitespace changes
Inline
Side-by-side
docker/vidjil/conf/nginx_web2py
View file @
2815e21e
...
...
@@ -38,6 +38,7 @@ server {
location /browser {
root /var/www;
expires 1h;
add_header Cache-Control must-revalidate;
error_page 405 = $uri;
...
...
@@ -46,6 +47,7 @@ server {
location /germline {
root /usr/share/vidjil/;
expires 1h;
add_header Cache-Control must-revalidate;
error_page 405 = $uri;
...
...
server/nginx_install.sh
View file @
2815e21e
...
...
@@ -107,6 +107,7 @@ server {
location /browser {
root
$CWD
/../;
expires 1h;
add_header Cache-Control must-revalidate;
error_page 405 =
$uri
;
}
...
...
@@ -114,6 +115,7 @@ server {
location /germline {
root
$CWD
/../;
expires 1h;
add_header Cache-Control must-revalidate;
error_page 405 =
$uri
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment