Commit 4b4e088
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;
+ }
+}
+```