Enable nginx
This commit is contained in:
parent
43e4c60dd5
commit
c8ca5adf84
@ -17,6 +17,7 @@
|
||||
./gitea.nix
|
||||
./msmtp.nix
|
||||
./postgresql.nix
|
||||
./nginx.nix
|
||||
#./pxe.nix
|
||||
];
|
||||
|
||||
|
14
m/hut/nginx.nix
Normal file
14
m/hut/nginx.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
virtualHosts."jungle.bsc.es" = {
|
||||
listen = [
|
||||
{
|
||||
addr = "127.0.0.1";
|
||||
port = 8123;
|
||||
}
|
||||
];
|
||||
locations."/p/".alias = "/ceph/p/";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user