Compare commits
2 Commits
7af1063f1f
...
db996d5cd5
Author | SHA1 | Date |
---|---|---|
coolneng | db996d5cd5 | |
coolneng | 0aad4cffab |
|
@ -42,13 +42,41 @@
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
virtualHosts = {
|
||||||
|
"frontend.coace.duckdns.org" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
root = "/vault/backups/frontend/inetpub/wwwroot";
|
||||||
|
locations = {
|
||||||
|
"/few/".extraConfig = ''
|
||||||
|
fastcgi_index Default.aspx;
|
||||||
|
fastcgi_pass 127.0.0.1:9000;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root/few/$fastcgi_script_name;
|
||||||
|
fastcgi_param PATH_INFO "";
|
||||||
|
fastcgi-mono-server4 /applications=/few/:/vault/backups/frontend/inetpub/wwwroot/few/socket=tcp:127.0.0.1:9000;
|
||||||
|
include ${pkgs.nginx}/conf/fastcgi_params;
|
||||||
|
'';
|
||||||
|
"/gcw/".extraConfig = ''
|
||||||
|
fastcgi_index Default.aspx;
|
||||||
|
fastcgi_pass 127.0.0.1:9000;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root/few/$fastcgi_script_name;
|
||||||
|
fastcgi_param PATH_INFO "";
|
||||||
|
fastcgi-mono-server4 /applications=/gcw/:/vault/backups/frontend/inetpub/wwwroot/gcw/socket=tcp:127.0.0.1:9000;
|
||||||
|
include ${pkgs.nginx}/conf/fastcgi_params;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# ACME certs configuration
|
# ACME certs configuration
|
||||||
security.acme = {
|
security.acme = {
|
||||||
acceptTerms = true;
|
acceptTerms = true;
|
||||||
email = "secretario@arquitectosdeceuta.com";
|
email = "secretario@arquitectosdeceuta.com";
|
||||||
certs."coace.duckdns.org".webroot = "/var/lib/acme/acme-challenge";
|
certs."coace.duckdns.org" = {
|
||||||
|
webroot = "/var/lib/acme/acme-challenge";
|
||||||
|
extraDomainNames = [ "frontend.coace.duckdns.org" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Generate dhparams
|
# Generate dhparams
|
||||||
|
|
Loading…
Reference in New Issue