feat: amz enable all hosts
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
enableDefaultLocations = false;
|
||||
enableMysql = true;
|
||||
authorizedKeys = [
|
||||
# Add deployment SSH key here
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTsA1z6/vOshSqmEUGO6vFbAYCrucgNORMKyoQ5/9/l"
|
||||
];
|
||||
extraConfig = ''
|
||||
add_header X-Frame-Options "SAMEORIGIN";
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
enableDefaultLocations = false;
|
||||
enableMysql = true;
|
||||
authorizedKeys = [
|
||||
# Add deployment SSH key here
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIqpF703JmLTBpBjTSvC0bnYu+lSYdmaGPHxMnHEbMmp"
|
||||
];
|
||||
extraConfig = ''
|
||||
add_header X-Frame-Options "SAMEORIGIN";
|
||||
|
||||
@@ -3,11 +3,12 @@
|
||||
# Enabled vhosts (cloonar.dev)
|
||||
./api.ebs.cloonar.dev.nix
|
||||
./ebs.cloonar.dev.nix
|
||||
./ebs-mobile.cloonar.dev.nix
|
||||
|
||||
# Disabled vhosts (amz.at) - uncomment to enable
|
||||
# ./api.ebs.amz.at.nix
|
||||
# ./api.stage.ebs.amz.at.nix
|
||||
# ./ebs.amz.at.nix
|
||||
# ./stage.ebs.amz.at.nix
|
||||
./api.ebs.amz.at.nix
|
||||
./api.stage.ebs.amz.at.nix
|
||||
./ebs.amz.at.nix
|
||||
./stage.ebs.amz.at.nix
|
||||
];
|
||||
}
|
||||
|
||||
49
hosts/amzebs-01/sites/ebs-mobile.cloonar.dev.nix
Normal file
49
hosts/amzebs-01/sites/ebs-mobile.cloonar.dev.nix
Normal file
@@ -0,0 +1,49 @@
|
||||
{ pkgs, lib, config, ... }:
|
||||
let
|
||||
domain = "ebs-mobile.cloonar.dev";
|
||||
dataDir = "/var/www/${domain}";
|
||||
in {
|
||||
services.nginx.virtualHosts."${domain}" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
# Use HTTP-01 challenge for Let's Encrypt
|
||||
acmeRoot = lib.mkForce "/var/lib/acme/acme-challenge";
|
||||
root = "${dataDir}";
|
||||
|
||||
locations."/favicon.ico".extraConfig = ''
|
||||
log_not_found off;
|
||||
access_log off;
|
||||
'';
|
||||
|
||||
# React client-side routing support
|
||||
locations."/".extraConfig = ''
|
||||
index index.html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
'';
|
||||
|
||||
# Cache static assets
|
||||
locations."~* \\.(js|jpg|gif|png|webp|css|woff2|svg|ico)$".extraConfig = ''
|
||||
expires 365d;
|
||||
add_header Pragma "public";
|
||||
add_header Cache-Control "public";
|
||||
'';
|
||||
|
||||
# Deny PHP execution
|
||||
locations."~ [^/]\\.php(/|$)".extraConfig = ''
|
||||
deny all;
|
||||
'';
|
||||
};
|
||||
|
||||
users.users."${domain}" = {
|
||||
isNormalUser = true;
|
||||
createHome = true;
|
||||
home = dataDir;
|
||||
homeMode = "770";
|
||||
group = "nginx";
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIErjoADQK5SJ5si/iezzwQn5xH1RkgnTIlbeE4BRU1FN"
|
||||
];
|
||||
};
|
||||
|
||||
users.groups.${domain} = {};
|
||||
}
|
||||
@@ -41,7 +41,7 @@ in {
|
||||
homeMode = "770";
|
||||
group = "nginx";
|
||||
openssh.authorizedKeys.keys = [
|
||||
# Add deployment SSH key here
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIInwmhTIPw7NnR3LDn2T5N6by0ZPXdL3r2O/8oRUc/ki"
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ in {
|
||||
homeMode = "770";
|
||||
group = "nginx";
|
||||
openssh.authorizedKeys.keys = [
|
||||
# Add deployment SSH key here
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIErjoADQK5SJ5si/iezzwQn5xH1RkgnTIlbeE4BRU1FN"
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user