PPT-Springboot / nginx.conf
shashidharak99's picture
Create nginx.conf
0741f35 verified
raw
history blame contribute delete
161 Bytes
server {
listen 7860;
server_name localhost;
root /var/www/html;
index index.html;
location / {
try_files $uri /index.html;
}
}