Change hostnames back to basics

This commit is contained in:
niten 2023-08-03 08:33:12 -07:00
parent 0aede73f39
commit 47ee0801eb

View File

@ -30,11 +30,11 @@ let
http { http {
upstream backend { upstream backend {
server mastodon-web:3000 fail_timeout=0; server web:3000;
} }
upstream streaming { upstream streaming {
server mastodon-streaming:4000 fail_timeout=0; server streaming:4000;
} }
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=CACHE:10m inactive=7d max_size=1g; proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=CACHE:10m inactive=7d max_size=1g;
@ -296,7 +296,7 @@ in {
}; };
web.service = { web.service = {
image = cfg.images.mastodon; image = cfg.images.mastodon;
hostname = "mastodon-web"; hostname = "web";
restart = "always"; restart = "always";
volumes = [ volumes = [
"${cfg.state-directory}/mastodon:/mastodon/public/system" "${cfg.state-directory}/mastodon:/mastodon/public/system"
@ -318,7 +318,7 @@ in {
}; };
streaming.service = { streaming.service = {
image = cfg.images.mastodon; image = cfg.images.mastodon;
hostname = "mastodon-streaming"; hostname = "streaming";
restart = "always"; restart = "always";
command = "node ./streaming"; command = "node ./streaming";
healthcheck.test = [ healthcheck.test = [