topogigiovanni
4/22/2019 - 10:24 PM

config de stie estatic nginx

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;
    }
}