Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dweber019 committed Oct 19, 2023
1 parent 764d39b commit c45dc74
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
server {
listen 8080;server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
pid /tmp/nginx.pid;

http {
client_body_temp_path /tmp/client_temp;
proxy_temp_path /tmp/proxy_temp_path;
fastcgi_temp_path /tmp/fastcgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;

listen 8080;server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}

}
}

0 comments on commit c45dc74

Please sign in to comment.