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