This commit is contained in:
Andrew Morgan 2018-09-13 15:31:06 +00:00 committed by Eliot Berriot
parent 8af459ff43
commit 7394ae1960
5 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ Update the funkwhale.conf configuration of your server's reverse-proxy::
sudo nano /etc/nginx/sites-enabled/funkwhale.conf sudo nano /etc/nginx/sites-enabled/funkwhale.conf
upstream fw { upstream fw {
# depending on your setup, you may want to udpate this # depending on your setup, you may want to update this
server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT}; server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT};
} }
map $http_upgrade $connection_upgrade { map $http_upgrade $connection_upgrade {

View File

@ -1,5 +1,5 @@
upstream funkwhale-api { upstream funkwhale-api {
# depending on your setup, you may want to udpate this # depending on your setup, you may want to update this
server api:5000; server api:5000;
} }

View File

@ -1,5 +1,5 @@
upstream fw { upstream fw {
# depending on your setup, you may want to udpate this # depending on your setup, you may want to update this
server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT}; server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT};
} }
map $http_upgrade $connection_upgrade { map $http_upgrade $connection_upgrade {

View File

@ -51,7 +51,7 @@ FUNKWHALE_PROTOCOL=https
# EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465 # EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465
# EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587 # EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587
# The email address to use to send systme emails. By default, we will # The email address to use to send system emails.
# DEFAULT_FROM_EMAIL=noreply@yourdomain # DEFAULT_FROM_EMAIL=noreply@yourdomain
# Depending on the reverse proxy used in front of your funkwhale instance, # Depending on the reverse proxy used in front of your funkwhale instance,

View File

@ -1,7 +1,7 @@
# This file was generated from funkwhale.template # This file was generated from funkwhale.template
upstream funkwhale-api { upstream funkwhale-api {
# depending on your setup, you may want to udpate this # depending on your setup, you may want to update this
server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT}; server ${FUNKWHALE_API_IP}:${FUNKWHALE_API_PORT};
} }