Infini-DL360/web: remove lamp

This commit is contained in:
Infinidoge 2025-05-22 23:09:40 -04:00
parent b781c4bfb7
commit b9768e21d3
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E

View file

@ -119,11 +119,6 @@ in
tryFiles = "$uri $uri/ $uri.html /index.html";
};
};
"lamp.inx.moe" = ssl-inx // {
locations."/" = {
proxyPass = "http://localhost:48080";
};
};
};
services.uwsgi = {
@ -131,27 +126,4 @@ in
plugins = [ "python3" ];
instance.type = "emperor";
};
services.httpd.enable = true;
services.httpd.virtualHosts."lamp.inx.moe" = rec {
listen = [
{
ip = "127.0.0.1";
port = 48080;
}
];
adminAddr = "webmaster@inx.moe";
documentRoot = "/srv/web/lamp.inx.moe";
extraConfig = ''
AddHandler cgi-script .cgi
<Directory "${documentRoot}">
AllowOverride All
Options All
Require all granted
</Directory>
'';
};
}