mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-16 11:25:09 +01:00
Fix incorrect nginx configuration
Signed-off-by: Manuel Thalmann <m@nuth.ch>
This commit is contained in:
parent
efe3caebdc
commit
9f4b5e7856
6 changed files with 36 additions and 36 deletions
|
@ -97,6 +97,12 @@ http {
|
|||
#pagespeed off;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php$request_uri @nextcloud-fallback;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location @nextcloud-fallback {
|
||||
rewrite ^ /index.php;
|
||||
}
|
||||
|
||||
|
@ -158,11 +164,5 @@ http {
|
|||
# Optional: Don't log access to assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
||||
try_files $uri /index.php$request_uri;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -97,6 +97,12 @@ http {
|
|||
#pagespeed off;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php$request_uri @nextcloud-fallback;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location @nextcloud-fallback {
|
||||
rewrite ^ /index.php;
|
||||
}
|
||||
|
||||
|
@ -158,11 +164,5 @@ http {
|
|||
# Optional: Don't log access to assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
||||
try_files $uri /index.php$request_uri;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -97,6 +97,12 @@ http {
|
|||
#pagespeed off;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php$request_uri @nextcloud-fallback;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location @nextcloud-fallback {
|
||||
rewrite ^ /index.php;
|
||||
}
|
||||
|
||||
|
@ -158,11 +164,5 @@ http {
|
|||
# Optional: Don't log access to assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
||||
try_files $uri /index.php$request_uri;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,6 +102,12 @@ http {
|
|||
#pagespeed off;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php$request_uri @nextcloud-fallback;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location @nextcloud-fallback {
|
||||
rewrite ^ /index.php;
|
||||
}
|
||||
|
||||
|
@ -163,11 +169,5 @@ http {
|
|||
# Optional: Don't log access to assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
||||
try_files $uri /index.php$request_uri;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,6 +102,12 @@ http {
|
|||
#pagespeed off;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php$request_uri @nextcloud-fallback;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location @nextcloud-fallback {
|
||||
rewrite ^ /index.php;
|
||||
}
|
||||
|
||||
|
@ -163,11 +169,5 @@ http {
|
|||
# Optional: Don't log access to assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
||||
try_files $uri /index.php$request_uri;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,6 +102,12 @@ http {
|
|||
#pagespeed off;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.php$request_uri @nextcloud-fallback;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location @nextcloud-fallback {
|
||||
rewrite ^ /index.php;
|
||||
}
|
||||
|
||||
|
@ -163,11 +169,5 @@ http {
|
|||
# Optional: Don't log access to assets
|
||||
access_log off;
|
||||
}
|
||||
|
||||
location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
|
||||
try_files $uri /index.php$request_uri;
|
||||
# Optional: Don't log access to other assets
|
||||
access_log off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue