Changing config symlinks to hard links w/ content

This commit is contained in:
2017-12-08 10:30:18 -05:00
parent e276004266
commit 095de45d54
5 changed files with 236 additions and 5 deletions
-1
View File
@@ -1 +0,0 @@
/etc/nginx/sites-available/panic-shack
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
listen [::]:80;
root /var/www/panic-shack;
server_name panic-shack.hallada.net;
location / {
return 301 https://panic-shack.hallada.net$request_uri;
}
}