Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nginx-overrides.conf « dockerfiles - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7564d0c91ace20e1321659fa8135c6cf16c67971 (plain)
1
2
3
4
5
6
7
8
9
server {
  port_in_redirect off;
  listen 4000;
  error_page 403 404 /404.html;
  location / {
    root   /usr/share/nginx/html;
    index  index.html index.htm;
  }
}