feat(nixos/nginx): add pages option to nginx module
This commit is contained in:
parent
b3a5441e8b
commit
5f7cfd5d24
3 changed files with 49 additions and 1 deletions
|
@ -42,6 +42,12 @@
|
|||
enableSSL = true;
|
||||
nginx = {
|
||||
enable = true;
|
||||
pages = [
|
||||
{
|
||||
domain = "rrv.sh";
|
||||
root = ./root;
|
||||
}
|
||||
];
|
||||
proxies = [
|
||||
{
|
||||
source = "aenyrathia.wiki";
|
||||
|
|
9
systems/x86_64-linux/apollo/root/index.html
Normal file
9
systems/x86_64-linux/apollo/root/index.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>rrv.sh</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>TEST</h1>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue