server {
listen 8000;
server_name clipping.cc;
root /var/www/clipping-front/build;
index index.html index.htm;
# Any route that doesn't have a file extension (e.g. /devices)
location / {
try_files $uri /index.html;
}
}