rascunho-etc

commit 92182d6ab7d6707811ec3aee6ff1dd0212d9629d

Author: Pedro Lucas Porcellis <pedrolucasporcellis@gmail.com>

Initial nginx conf

 nginx/rascunho.eletrotupi.com.conf | 12 ++++++++++++


diff --git a/nginx/rascunho.eletrotupi.com.conf b/nginx/rascunho.eletrotupi.com.conf
new file mode 100644
index 0000000000000000000000000000000000000000..6409041025ac52883f541b9e5fead935a97ff107
--- /dev/null
+++ b/nginx/rascunho.eletrotupi.com.conf
@@ -0,0 +1,12 @@
+server {
+    listen 80;
+    server_name rascunho.eletrotupi.com;
+
+    location / {
+        root /var/www/rascunho;
+    }
+
+    location ^~ /.well-known {
+      root /var/www;
+    }
+}