Continued Wallabag setup

This commit is contained in:
Trevor Vallender 2023-10-09 16:55:57 +01:00
parent 2196c3d2bf
commit 01b2421098
2 changed files with 14 additions and 2 deletions

View File

@ -34,6 +34,7 @@
}; };
}; };
# Syncthing
virtualHosts."syncthing.tsvallender.co.uk" = { virtualHosts."syncthing.tsvallender.co.uk" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
@ -42,6 +43,7 @@
}; };
}; };
# Miniflux
virtualHosts."feeds.tsvallender.co.uk" = { virtualHosts."feeds.tsvallender.co.uk" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
@ -50,6 +52,7 @@
}; };
}; };
# Radicale
virtualHosts."cal.tsvallender.co.uk" = { virtualHosts."cal.tsvallender.co.uk" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
@ -57,6 +60,15 @@
proxyPass = "http://127.0.0.1:5232"; proxyPass = "http://127.0.0.1:5232";
}; };
}; };
# Wallabag
virtualHosts."wb.tsvallender.co.uk" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:5232";
};
};
}; };
security.acme = { security.acme = {

View File

@ -8,8 +8,8 @@
SYMFONY__ENV__DOMAIN_NAME = "http://localhost"; SYMFONY__ENV__DOMAIN_NAME = "http://localhost";
}; };
volumes = [ volumes = [
"/opt/wallabag/data:/var/www/wallabag/data", "/opt/wallabag/data:/var/www/wallabag/data"
"/opt/wallabag/images:/var/www/wallabag/images", "/opt/wallabag/images:/var/www/wallabag/images"
]; ];
}; };
}; };