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 c45dc74 commit 2945c23
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
server {
pid /tmp/nginx.pid;
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;
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;

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

}
}

0 comments on commit 2945c23

Please sign in to comment.