forked from Zynh0722/permafrost
nginx: disable addSSL
This commit is contained in:
parent
e0e1d23581
commit
294a97de10
3 changed files with 6 additions and 4 deletions
|
@ -14,7 +14,7 @@ in
|
||||||
permafrost.nginx.certDomains = lib.mkIf ACMEEnabled [ "git.zynh.me" ];
|
permafrost.nginx.certDomains = lib.mkIf ACMEEnabled [ "git.zynh.me" ];
|
||||||
services.nginx.virtualHosts."git.zynh.me" = {
|
services.nginx.virtualHosts."git.zynh.me" = {
|
||||||
# TODO: Force ssl
|
# TODO: Force ssl
|
||||||
addSSL = true;
|
# addSSL = true;
|
||||||
serverName = "git.zynh.me";
|
serverName = "git.zynh.me";
|
||||||
useACMEHost = lib.mkIf ACMEEnabled "scarlet.zynh.me";
|
useACMEHost = lib.mkIf ACMEEnabled "scarlet.zynh.me";
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
|
|
|
@ -14,7 +14,7 @@ in
|
||||||
permafrost.nginx.certDomains = lib.mkIf ACMEEnabled [ "scarlet.zynh.me" ];
|
permafrost.nginx.certDomains = lib.mkIf ACMEEnabled [ "scarlet.zynh.me" ];
|
||||||
services.nginx.virtualHosts."scarlet.zynh.me" = {
|
services.nginx.virtualHosts."scarlet.zynh.me" = {
|
||||||
# TODO: Force ssl
|
# TODO: Force ssl
|
||||||
addSSL = true;
|
# addSSL = true;
|
||||||
serverName = "scarlet.zynh.me";
|
serverName = "scarlet.zynh.me";
|
||||||
useACMEHost = lib.mkIf ACMEEnabled "scarlet.zynh.me";
|
useACMEHost = lib.mkIf ACMEEnabled "scarlet.zynh.me";
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
|
@ -33,7 +33,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."ddbimporter.zynh.me" = {
|
services.nginx.virtualHosts."ddbimporter.zynh.me" = {
|
||||||
addSSL = true;
|
# TODO: Force ssl
|
||||||
|
# addSSL = true;
|
||||||
serverName = "ddbimporter.zynh.me";
|
serverName = "ddbimporter.zynh.me";
|
||||||
locations."/".proxyPass = "http://localhost:3232";
|
locations."/".proxyPass = "http://localhost:3232";
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,7 +26,8 @@ in
|
||||||
permafrost.nginx.certDomains = lib.mkIf ACMEEnabled [ "nyazoom.zynh.me" ];
|
permafrost.nginx.certDomains = lib.mkIf ACMEEnabled [ "nyazoom.zynh.me" ];
|
||||||
services.nginx.virtualHosts."nyazoom.zynh.me" = {
|
services.nginx.virtualHosts."nyazoom.zynh.me" = {
|
||||||
# TODO: Force ssl
|
# TODO: Force ssl
|
||||||
addSSL = true;
|
# TODO: Force ssl
|
||||||
|
# addSSL = true;
|
||||||
serverName = "nyazoom.zynh.me";
|
serverName = "nyazoom.zynh.me";
|
||||||
useACMEHost = lib.mkIf ACMEEnabled "scarlet.zynh.me";
|
useACMEHost = lib.mkIf ACMEEnabled "scarlet.zynh.me";
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
|
|
Loading…
Reference in a new issue