Enable ssl on code-server

This commit is contained in:
Felix Albrigtsen 2023-04-19 22:18:04 +02:00
parent f14628114e
commit 58725073e4
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ in {
port = 4444;
};
services.nginx.virtualHosts."code.home.feal.no" = {
forceSSL = true;
sslCertificateKey = "/etc/ssl-snakeoil/code_home_feal_no.key";
sslCertificate = "/etc/ssl-snakeoil/code_home_feal_no.crt";
locations."/" = {
proxyPass = "http://127.0.1.2:${toString cfg.port}";
proxyWebsockets = true;