Continued Wallabag setup
This commit is contained in:
parent
2196c3d2bf
commit
01b2421098
|
@ -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 = {
|
||||||
|
|
|
@ -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"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue