nextcloud: fix nginx.conf

This commit is contained in:
Wonderfall 2016-09-22 17:07:10 +02:00
parent 1c449456c2
commit d627b800af
3 changed files with 3 additions and 6 deletions

View File

@ -32,7 +32,6 @@ http {
server {
listen 8888;
index index.php;
root /nextcloud;
client_max_body_size <UPLOAD_MAX_SIZE>;
@ -107,7 +106,7 @@ http {
}
location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
try_files $uri /nextcloud/index.php$uri$is_args$args;
try_files $uri /index.php$uri$is_args$args;
access_log off;
}
}

View File

@ -32,7 +32,6 @@ http {
server {
listen 8888;
index index.php;
root /nextcloud;
client_max_body_size <UPLOAD_MAX_SIZE>;
@ -107,7 +106,7 @@ http {
}
location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
try_files $uri /nextcloud/index.php$uri$is_args$args;
try_files $uri /index.php$uri$is_args$args;
access_log off;
}
}

View File

@ -32,7 +32,6 @@ http {
server {
listen 8888;
index index.php;
root /nextcloud;
client_max_body_size <UPLOAD_MAX_SIZE>;
@ -107,7 +106,7 @@ http {
}
location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
try_files $uri /nextcloud/index.php$uri$is_args$args;
try_files $uri /index.php$uri$is_args$args;
access_log off;
}
}