Skip to content
Snippets Groups Projects
nginx.conf 281 B
Newer Older
cazenave's avatar
cazenave committed

cazenave's avatar
cazenave committed
events{}
http {
cazenave's avatar
cazenave committed

cazenave's avatar
cazenave committed
        include /etc/nginx/mime.types;
        server {
        listen 80;
        server_name localhost;
        root /usr/share/nginx/html;
        index index.html;
        location / {
            try_files $uri $uri/ /index.html;
        }
cazenave's avatar
cazenave committed
        }

cazenave's avatar
cazenave committed
    }
cazenave's avatar
cazenave committed