Skip to content
Snippets Groups Projects
nginx.conf 213 B
Newer Older
timbastin's avatar
timbastin committed
events {
    worker_connections 1024;
}
http {
    include mime.types;
    sendfile on;

    server {
        listen 80;

        location / {
            root /www/data;
        }

        gzip_static on;
    }
}