General clean up

This commit is contained in:
2023-04-16 22:54:27 -04:00
parent 7bdfe41aa1
commit 3e6c8db324
6 changed files with 46 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
# Ignore everything in this directory
*
# Except for this file
!.gitignore
!.gitignore
!README.md

14
conf/certs/README.md Normal file
View File

@@ -0,0 +1,14 @@
Create a links to the pem files
* ./conf/certs/oneskyit.com_fullchain.pem
* ./conf/certs/privkey.pem
* ./conf/certs/ssl-dhparams.pem
## Copy certs
### Copy Let's Encrypt
Does the ownership or other permissions need to change?
```bash
sudo cp /etc/letsencrypt/live/oneskyit.com-0001/fullchain.pem /srv/env/test_aether/conf/certs/fullchain.pem
sudo cp /etc/letsencrypt/live/oneskyit.com-0001/privkey.pem /srv/env/test_aether/conf/certs/privkey.pem
sudo cp /etc/letsencrypt/ssl-dhparams.pem /srv/env/test_aether/conf/certs/ssl-dhparams.pem
# sudo chown -R scott:scott ~/srv/env/test_aether/certs/
```