Skip to content

Commit

Permalink
Merge branch 'mydevelop' of https://github.com/mayuradesh/partner-man…
Browse files Browse the repository at this point in the history
…agement-portal into mydevelop
  • Loading branch information
mayuradesh committed May 6, 2024
2 parents 09c7b72 + 01cc3cd commit 00f63b2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pmp-reactjs-ui/nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
worker_processes 1;

events {
worker_connections 1024;
}

http {
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
server {
listen 3000;
server_name localhost;

root /usr/share/nginx/html;
index index.html index.htm;
include /etc/nginx/mime.types;

gzip on;
gzip_min_length 1000;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;

location / {
# alias /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
}
}

0 comments on commit 00f63b2

Please sign in to comment.