1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 03:57:44 +00:00

Enable site service

This commit is contained in:
RGBCube 2024-01-09 00:05:15 +03:00
parent 93a7bcb0b4
commit 3e8beda40e
No known key found for this signature in database
2 changed files with 6 additions and 4 deletions

6
flake.lock generated
View file

@ -691,11 +691,11 @@
"tools": "tools" "tools": "tools"
}, },
"locked": { "locked": {
"lastModified": 1704201363, "lastModified": 1704745537,
"narHash": "sha256-Yy7Iz6tmbHxTlIp8xjrybt0SpqtHqlfGI1ehr1jBvkY=", "narHash": "sha256-n27PD/cHZIfflTkQi2il2rMVcBfX4cvqvmo6/de52PU=",
"owner": "RGBCube", "owner": "RGBCube",
"repo": "Site", "repo": "Site",
"rev": "1c834be341adad51222e2892d375e07fe4887d7a", "rev": "7e67fdc42760cdf946db8a06fce83583b6b2a7d2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,7 +1,9 @@
{ ulib, ... }: with ulib; { ulib, ... }: with ulib;
serverSystemConfiguration { serverSystemConfiguration {
services.site = { # enabled { services.site = enabled {
httpPort = 80;
httpsPort = 443;
openFirewall = true; openFirewall = true;
}; };
} }