Skip to content
Snippets Groups Projects

Enable nginx by default, and override the favicon to find the right tab easier

Closed username-removed-487110 requested to merge 186-nginx-favicon into master
1 file
+ 21
0
Compare changes
  • Side-by-side
  • Inline
@@ -38,6 +38,27 @@ http {
'' close;
}
server {
listen 127.0.0.1:3080;
location ~* favicon.*\.ico$ {
alias /home/git/nginx/favicon-gdk.ico;
}
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set-header Connection $connection_upgrade;
proxy_read_timeout 300;
proxy_pass http://gitlab-workhorse;
}
}
server {
listen 127.0.0.1:3443 ssl;
Loading