Commit 4b4e088

bryfry <bryon.fryer@gmail.com>
2017-01-09 10:42:40
Update README.md
1 parent 13895af
Changed files (1)
README.md
@@ -10,3 +10,14 @@ For now just documentation on what is running on TMC and how it is setup. Eventu
 * https://github.com/bryfry/shadow-quiz - see shadow quiz setup
 
 ## nginx config:
+
+```
+server {
+  listen 80 default_server;
+  root /var/www;
+  server_name _;
+  location / {
+    try_files $uri $uri/ =404;
+  }
+}
+```