Skip to content

Commit

Permalink
added nginx config
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuldeep-knoldus committed Jun 27, 2024
1 parent 04804fd commit 57de7d8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions blogs-analyzer-ui/nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
events{}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;

# Logs will appear on the Google Developer's Console when logged to this
# directory.
access_log /var/log/app_engine/app.log;
error_log /var/log/app_engine/app.log;

gzip on;
gzip_disable "msie6";
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
}

0 comments on commit 57de7d8

Please sign in to comment.