diff options
| author | Jose Quintana <[email protected]> | 2021-03-16 09:14:24 +0100 |
|---|---|---|
| committer | Jose Quintana <[email protected]> | 2021-03-16 09:14:24 +0100 |
| commit | d5b7d91a17ac26f8ec3781c1faacc61cc785c21c (patch) | |
| tree | 16b039834a31c30623de959f3f5bb86071e4ba91 /nginx/conf.d/default.conf | |
| parent | f3f40641fa5a91adf8527741928b15e6b1191e5f (diff) | |
| download | alpine-cgit-d5b7d91a17ac26f8ec3781c1faacc61cc785c21c.tar.xz alpine-cgit-d5b7d91a17ac26f8ec3781c1faacc61cc785c21c.zip | |
refactor: prod server adjustments
Diffstat (limited to 'nginx/conf.d/default.conf')
| -rw-r--r-- | nginx/conf.d/default.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/nginx/conf.d/default.conf b/nginx/conf.d/default.conf new file mode 100644 index 0000000..fe5c9ad --- /dev/null +++ b/nginx/conf.d/default.conf @@ -0,0 +1,36 @@ +server { + listen 80; + server_name localhost; + root /usr/share/webapps/cgit; + + location / { + try_files $uri @cgit; + } + + location ~* ^.+(cgit.(css|png)|favicon.ico|robots.txt) { + root /usr/share/webapps/cgit; + expires 30d; + } + + location @cgit { + gzip off; + include /etc/nginx/fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root/cgit.cgi; + fastcgi_param PATH_INFO $uri; + fastcgi_param QUERY_STRING $args; + fastcgi_param HTTP_HOST $server_name; + fastcgi_pass unix:/var/run/fcgiwrap.sock; + } + + error_page 404 /404.html; + error_page 401 /401.html; + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } + + location ~ /\.ht { + deny all; + } +} |
