generic-chatbot-admin / devops /nginx.default.conf
muryshev's picture
fix
8fbfd3a
raw
history blame
182 Bytes
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}