FastNetMon

Tuesday 8 February 2011

Проксирование Confluence посредством Nginx на Debian

Стаивм Nginx:
apt-get install -y nginx

После этого очищаем следующий конфиг:
vi /etc/nginx/sites-enabled/default

И вносим в него следующие строки:
server {
listen 80;
server_name wiki.domain.ru;

access_log /var/log/nginx/access.log;

location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8180;
}
}


Применяем настройки:
/etc/init.d/nginx restart

Источник: http://serverfault.com/questions/118592/can-i-get-advice-on-my-nginx-configuration-as-a-proxy-in-front-of-jira-and-confl

No comments :

Post a Comment

Note: only a member of this blog may post a comment.