Skip to content

Commit

Permalink
added nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedegeofroy committed Nov 13, 2024
1 parent e449697 commit 1fbf5b1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
events {
worker_connections 1024;
}

http {
include mime.types;
types {
application/javascript js mjs;
}

server {
listen 80;
server_name localhost;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}
}

0 comments on commit 1fbf5b1

Please sign in to comment.