From d84ae44ef8ed6db487009610a9dba6127869c39c Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 3 Apr 2022 22:20:51 -0700 Subject: [PATCH] + Nginx configs for file and music services --- docker-host/setup/files/files.lablad | 10 ++++++++++ docker-host/setup/files/music.lablad | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 docker-host/setup/files/files.lablad create mode 100644 docker-host/setup/files/music.lablad diff --git a/docker-host/setup/files/files.lablad b/docker-host/setup/files/files.lablad new file mode 100644 index 0000000..1e149f7 --- /dev/null +++ b/docker-host/setup/files/files.lablad @@ -0,0 +1,10 @@ +# this file pertains to the gitea service which is served under the fqdn: +# git.lablad +# the default port is listed under /vars/main.yml as 3000 as gitea_pub_port + +server { + server_name files.lablad; + location / { + proxy_pass http://127.0.0.1:8080; + } +} \ No newline at end of file diff --git a/docker-host/setup/files/music.lablad b/docker-host/setup/files/music.lablad new file mode 100644 index 0000000..1eb9a23 --- /dev/null +++ b/docker-host/setup/files/music.lablad @@ -0,0 +1,10 @@ +# this file pertains to the gitea service which is served under the fqdn: +# git.lablad +# the default port is listed under /vars/main.yml as 3000 as gitea_pub_port + +server { + server_name music.lablad; + location / { + proxy_pass http://127.0.0.1:6789; + } +}