Fixed typo in alias rule
This commit is contained in:
parent
173cd9ef78
commit
5dac6cdc20
|
@ -23,7 +23,7 @@ the ``location /api/`` and `location /` blocks by the following snippets::
|
||||||
}
|
}
|
||||||
|
|
||||||
location /front/ {
|
location /front/ {
|
||||||
alias /frontend;
|
alias /frontend/;
|
||||||
}
|
}
|
||||||
|
|
||||||
The change of configuration will be picked when restarting your nginx container.
|
The change of configuration will be picked when restarting your nginx container.
|
||||||
|
@ -40,7 +40,7 @@ and replace the ``location /api/`` and `location /` blocks by the following snip
|
||||||
}
|
}
|
||||||
|
|
||||||
location /front/ {
|
location /front/ {
|
||||||
alias ${FUNKWHALE_FRONTEND_PATH};
|
alias ${FUNKWHALE_FRONTEND_PATH}/;
|
||||||
}
|
}
|
||||||
|
|
||||||
Replace ``${FUNKWHALE_FRONTEND_PATH}`` by the corresponding variable from your .env file,
|
Replace ``${FUNKWHALE_FRONTEND_PATH}`` by the corresponding variable from your .env file,
|
||||||
|
|
|
@ -31,7 +31,7 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location /front/ {
|
location /front/ {
|
||||||
alias /frontend;
|
alias /frontend/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /federation/ {
|
location /federation/ {
|
||||||
|
|
|
@ -51,7 +51,7 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
location /front/ {
|
location /front/ {
|
||||||
alias ${FUNKWHALE_FRONTEND_PATH};
|
alias ${FUNKWHALE_FRONTEND_PATH}/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /federation/ {
|
location /federation/ {
|
||||||
|
|
Loading…
Reference in New Issue