ryotarai/infrataster

View on GitHub
example/cookbooks/proxy/templates/default/static.erb

Summary

Maintainability
Test Coverage
server {
    listen   80;

    root /usr/share/nginx/www;
    index index.html index.htm;

    server_name static;

    location / {
        try_files $uri $uri/ /index.html;
    }
}