我遇到了redmine的问题。
我使用nginx和postresql在debian 6.0上安装了redmine 当我想使用adres ServerIP / redmine进行redmine时,它会重定向到localhost / redmine
可能是什么问题?我必须在刚刚开始的时候添加关于debian的工作
答案 0 :(得分:0)
您需要在nginx配置文件中提及服务器IP
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;
}}