mirror of
https://github.com/YunoHost-Apps/my_webapp_ynh.git
synced 2024-09-03 19:46:26 +02:00
Wrong path construction with the nginx error code
This commit is contained in:
parent
ea8278b48b
commit
5f1dfbd192
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
||||||
# Build error access
|
# Build error access
|
||||||
error_page 403 /error/403.html;
|
error_page 403 /error/403.html;
|
||||||
location = __PATH__/error/403.html {
|
location = /error/403.html {
|
||||||
internal;
|
internal;
|
||||||
}
|
}
|
||||||
|
|
||||||
error_page 404 /error/404.html;
|
error_page 404 /error/404.html;
|
||||||
location = __PATH__/error/404.html {
|
location = /error/404.html {
|
||||||
internal;
|
internal;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue