debian: nginx example update

Removed from .docs
This commit is contained in:
Serghei Mihai 2015-06-02 18:18:24 +02:00
parent 75ab7a7bab
commit 8030037984
2 changed files with 7 additions and 12 deletions

View File

@ -9,16 +9,11 @@ server {
access_log /var/log/nginx/u-auth.example.org-access.log combined;
error_log /var/log/nginx/u-auth.example.org-error.log;
location ~ ^/([^/]*)/static/(.+)$ {
location ~ ^/static/([^/]+)/(.+)$ {
root /;
try_files /var/lib/u-auth/organizations/$1/static/$2
=404;
}
location ~ ^/static/(.+) {
root /;
try_files /var/lib/u-auth/static/$1
/var/lib/u-auth/collectstatic/$1
/var/lib/u-auth/static/$1/$2
/var/lib/u-auth/collectstatic/$1/$2
=404;
}
@ -45,10 +40,11 @@ server {
access_log /var/log/nginx/u-auth.example.org-access.log combined;
error_log /var/log/nginx/u-auth.example.org-error.log;
location ~ ^/static/(.+)$ {
location ~ ^/static/([^/]+)/(.+)$ {
root /;
try_files /var/lib/u-auth/static/$1
/var/lib/u-auth/collectstatic/$1
try_files /var/lib/u-auth/organizations/$1/static/$2
/var/lib/u-auth/static/$1/$2
/var/lib/u-auth/collectstatic/$1/$2
=404;
}

1
debian/u-auth.docs vendored
View File

@ -1,3 +1,2 @@
COPYING
README
debian/nginx-example.conf