Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
nginx.conf 296 B
server {
    location / {
        include uwsgi_params;
        uwsgi_pass unix:/tmp/ccgapp.sock;
    }

    location /grammar {
        alias /OpenCCG.ebnf;
        add_header Content-Disposition 'inline; filename="OpenCCG.ebnf"';
        default_type text/plain;
        charset utf-8;
    }
}