Special headers for workadventure map
This commit is contained in:
parent
ab70ee9a51
commit
337f5824f0
@ -9,6 +9,7 @@
|
|||||||
./gitea.nix
|
./gitea.nix
|
||||||
./ip.nix
|
./ip.nix
|
||||||
./meow.nix
|
./meow.nix
|
||||||
|
./public.nix
|
||||||
./radicale.nix
|
./radicale.nix
|
||||||
./znc.nix
|
./znc.nix
|
||||||
];
|
];
|
||||||
@ -34,17 +35,6 @@
|
|||||||
recommendedOptimisation = true;
|
recommendedOptimisation = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
recommendedTlsSettings = true;
|
recommendedTlsSettings = true;
|
||||||
|
|
||||||
virtualHosts."web-2.net.clerie.de" = {
|
|
||||||
enableACME = true;
|
|
||||||
forceSSL = true;
|
|
||||||
locations."/" = {
|
|
||||||
return = "404";
|
|
||||||
};
|
|
||||||
locations."/public/" = {
|
|
||||||
alias = "/var/www/public/";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
|
22
hosts/web-2/public.nix
Normal file
22
hosts/web-2/public.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.nginx = {
|
||||||
|
virtualHosts."web-2.net.clerie.de" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
return = "404";
|
||||||
|
};
|
||||||
|
locations."/public/" = {
|
||||||
|
alias = "/var/www/public/";
|
||||||
|
};
|
||||||
|
locations."/public/centopia/" = {
|
||||||
|
alias = "/var/www/public/centopia/";
|
||||||
|
extraConfig = ''
|
||||||
|
add_header Access-Control-Allow-Origin *;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user