diff --git a/README.md b/README.md index 2ea7202..52ae9db 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,128 @@ +
+
+
+ Score: 125/100
+ Finished: 20.01.2025
+
`) | `404 /404.html` |
+| `location` | location block | `location / {...}` |
+
+### Location/Route Options
+
+Specified within a `location` block. The server will use the closest matching location block.
+
+| directive | description | example |
+| --------------- | ------------------------------------------------------ | ------------------- |
+| `allow_methods` | allowed methods | `GET POST DELETE` |
+| `autoindex` | enable autoindex | `on` |
+| `cgi` | cgi script (` `) | `.php /usr/bin/php` |
+| `upload_dir` | upload directory (by setting this uploads are enabled) | `/uploads` |
+| `root` | root directory | `/www` |
+| `index` | default index file | `/index.html` |
+| `return` | only for redirect (` `) | `301 /new` |
+
+#### Redirect Location Example
+
+```nginx
+location /youtube {
+ return 301 https://www.youtube.com;
+}
+```
+
+## Authors
+
+This project was written as part of the 42 cursus at [42 Heilbronn](https://www.42heilbronn.de/) by:
+
+- [Jonhannes Moritz](https://github.com/jojomo96)
+- [Louen Gréau](https://github.com/GREAULouen)
+- [Florian Fischer](https://github.com/flomero)