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" = {
forceSSL = true;
enableACME = true;
@ -42,6 +43,7 @@
};
};
# Miniflux
virtualHosts."feeds.tsvallender.co.uk" = {
forceSSL = true;
enableACME = true;
@ -50,6 +52,7 @@
};
};
# Radicale
virtualHosts."cal.tsvallender.co.uk" = {
forceSSL = true;
enableACME = true;
@ -57,6 +60,15 @@
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 = {

View File

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