urdf-visualizer / viewer /nginx.conf
jurmy24's picture
fix: add nginx conf
5db1611
raw
history blame
192 Bytes
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}