1
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Edgar P. Burkhart e7ea64b450
Add Galene config 2023-05-16 16:42:43 +02:00
Edgar P. Burkhart ea2da0e2ec
Fix nginx install 2023-05-16 16:38:26 +02:00
4 changed files with 18 additions and 3 deletions

3
src/Galene/README.md Normal file
View File

@ -0,0 +1,3 @@
# Galene
Install to `/var/lib/galene/`.
Fill in passwords generated with `galene-password-generator`.

View File

@ -0,0 +1,6 @@
{
"canonicalHost": "galene.edgarpierre.fr",
"admin": [
$$$
]
}

View File

@ -0,0 +1,6 @@
{
"canonicalHost": "galene.edgarpierre.fr",
"admin": [
$$$
]
}

View File

@ -1,4 +1,4 @@
#!/usr/bin/env fish
sudo install -m a=r,u=rw -D nginx.conf /etc/nginx/
sudo install -m a=r,u=rw -D conf/* /etc/nginx/conf/
sudo install -m a=r,u=rw -D sites/* /etc/nginx/sites-enabled/
sudo install -m a=r,u=rw -D -t /etc/nginx/ nginx.conf
sudo install -m a=r,u=rw -D -t /etc/nginx/conf/ conf/*
sudo install -m a=r,u=rw -D -t /etc/nginx/sites-enabled/ sites/*