diff --git a/changes/changelog.d/358.enhancement b/changes/changelog.d/358.enhancement index 24f8a5dd39cb6d3acfe1a4199f571611a3c07654..1cc36b4766a7b103d19f28a4c2e78c4f87f0a6fa 100644 --- a/changes/changelog.d/358.enhancement +++ b/changes/changelog.d/358.enhancement @@ -86,7 +86,7 @@ Update the funkwhale.conf configuration of your server's reverse-proxy:: sudo nano /etc/nginx/sites-enabled/funkwhale.conf 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}; } map $http_upgrade $connection_upgrade { diff --git a/deploy/docker.nginx.template b/deploy/docker.nginx.template index 9a486908c5471e01767b77669d317a8a9ffefde2..d73a1c4b6ebd176aa0ef761affb80ba1c667a2d8 100644 --- a/deploy/docker.nginx.template +++ b/deploy/docker.nginx.template @@ -1,5 +1,5 @@ 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; } diff --git a/deploy/docker.proxy.template b/deploy/docker.proxy.template index 574df5ae50d78bcb1c8d42ff53a66e5454bbdb1c..319f287e79ca21a62a6c00884bbec3d54d2639b3 100644 --- a/deploy/docker.proxy.template +++ b/deploy/docker.proxy.template @@ -1,5 +1,5 @@ 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}; } map $http_upgrade $connection_upgrade { diff --git a/deploy/env.prod.sample b/deploy/env.prod.sample index caca55f3723e8d15221953f3f1994640a3b2e472..3918f95e399237051ee010e52aa0a2921962d7ba 100644 --- a/deploy/env.prod.sample +++ b/deploy/env.prod.sample @@ -51,7 +51,7 @@ FUNKWHALE_PROTOCOL=https # EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465 # 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 # Depending on the reverse proxy used in front of your funkwhale instance, diff --git a/deploy/nginx.template b/deploy/nginx.template index 7975fdc55da44b8ec35839c34ae0c5ddf3fd3f71..1eb011d4efc1ff11162863b1e69d21c847422d3a 100644 --- a/deploy/nginx.template +++ b/deploy/nginx.template @@ -1,7 +1,7 @@ # This file was generated from funkwhale.template 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}; }