Хотелось бы посмотреть youtrack+nginx на сервере Debian 8.
Установил JDK, запустил youtrack:
java -Xmx1g -XX:MaxPermSize=250M -Djava.awt.headless=true -Djava.security.egd=/dev/zrandom -jar youtrack-6.5.16807.jar 8112
Запустилось.
Установил nginx, добавил в /etc/nginx/nginx.conf
http {
...
...
...
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:8112;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}
}
Захожу по адресу сервера, бодро открывается дефолтная страничка nginx.
Делаю netstat -tulpn
:
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 445/rpcbind
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3285/nginx -g daemo
tcp 0 0 0.0.0.0:42128 0.0.0.0:* LISTEN 461/rpc.statd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 560/sshd
tcp6 0 0 :::111 :::* LISTEN 445/rpcbind
tcp6 0 0 :::80 :::* LISTEN 3285/nginx -g daemo
tcp6 0 0 :::8112 :::* LISTEN 816/java
tcp6 0 0 127.0.0.1:8113 :::* LISTEN 816/java
tcp6 0 0 :::35956 :::* LISTEN 461/rpc.statd
tcp6 0 0 :::22 :::* LISTEN 560/sshd
udp 0 0 0.0.0.0:620 0.0.0.0:* 445/rpcbind
udp 0 0 0.0.0.0:111 0.0.0.0:* 445/rpcbind
udp 0 0 127.0.0.1:637 0.0.0.0:* 461/rpc.statd
udp 0 0 0.0.0.0:56693 0.0.0.0:* 461/rpc.statd
udp6 0 0 :::34891 :::* 461/rpc.statd
udp6 0 0 :::620 :::* 445/rpcbind
udp6 0 0 :::111 :::* 445/rpcbind
ЧЯДНТ с nginx?