Search found 2 matches
- Tue Jan 12, 2016 6:44 pm
- Forum: Веб сервер
- Topic: ngnix gzip
- Replies: 6
- Views: 10124
Re: ngnix gzip
Спасибо, работает!
Можете добавить в следующий релиз.
Можете добавить в следующий релиз.
- Sun Nov 01, 2015 9:21 pm
- Forum: Общие вопросы
- Topic: Gitlab помогите поставить
- Replies: 7
- Views: 6816
Re: Gitlab помогите поставить
After gitlab installation, you should change default port in configuration. /etc/gitlab/gitlab.rb external_url 'http://{yourip}:9090' Then create an upstream and gitlab config in nginx. /etc/nginx/conf.d/upsteams.conf upstream gitlab { server {yourip}:9090; } /etc/nginx/conf.d/gitlab.conf server { l...