Skip to content
This repository has been archived by the owner on Feb 19, 2025. It is now read-only.

Commit

Permalink
nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Kerkhoff committed Nov 17, 2024
1 parent 6fc5d3b commit ecea528
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tutor-assistent-web/nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
server {
listen 80 default_server;
server_name tutor-assistant-web;
root /usr/share/nginx/html;
index index.html;
client_max_body_size 100M;

# Direct all requests to index.html (make routing work)
location / {
try_files $uri /index.html;
}
}

0 comments on commit ecea528

Please sign in to comment.