redirect - Adress redirected to localhost in redmine -


i have problem redmine.

i installed redmine on debian 6.0 nginx , postresql when want redmine using adres serverip/redmine redirects localhost/redmine

what problem? must add work on debian starting

you need mention server ip in nginx configuration file

server { listen 80; listen [::]:80;  root /var/www/test.com/html; index index.html index.htm;  server_name test.com www.test.com;  location / {     try_files $uri $uri/ =404; }} 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -