15 lines
263 B
Nix
15 lines
263 B
Nix
{
|
|
services.cockpit = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
allowed-origins = [
|
|
"http://192.168.178.69:9090"
|
|
"wss://192.168.178.69:9090"
|
|
];
|
|
settings = {
|
|
WebService = {
|
|
AllowUnencrypted = true;
|
|
};
|
|
};
|
|
};
|
|
}
|