diff options
Diffstat (limited to 'nginx.conf')
| -rw-r--r-- | nginx.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..482d19c --- /dev/null +++ b/nginx.conf @@ -0,0 +1,41 @@ +worker_processes 1; +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + sendfile on; + + server { + listen 80; + server_name localhost; + + location / { + fastcgi_pass unix:/var/run/fcgiwrap.sock; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME /usr/share/webapps/cgit/cgit.cgi; + fastcgi_param PATH_INFO $uri; + fastcgi_param QUERY_STRING $query_string; + fastcgi_param GIT_PROJECT_ROOT /var/www/git; + fastcgi_param CGIT_CONFIG /etc/cgitrc; + } + + location /cgit.css { + alias /usr/share/webapps/cgit/cgit.css; + } + + location /cgit.png { + alias /usr/share/webapps/cgit/cgit.png; + } + + location /favicon.ico { + alias /usr/share/webapps/cgit/favicon.ico; + } + + location /robots.txt { + alias /usr/share/webapps/cgit/robots.txt; + } + } +} |
