您好我已经安装了bitnami redmine来使用agile。当我写localhost /或127.0.01 /它正在访问bitnami主页以链接redmine。
我想更改它以便可以使用正确的端口号,例如我想给端口1234,以便localhost:1234将成为我的地址。
我已经看过并试过{HOME} / apps / redmineplusagileconf / httpd-prefix来更改redmine的访问权限,但仍然无法通过自定义端口更改访问权限。
任何建议都会对我有所帮助。
答案 0 :(得分:1)
HTTP端口
在默认配置下,Apache将等待端口80上的请求。通过编辑httpd.conf
文件并修改端口指令中指定的值来更改它。例如:
Listen 1234
ServerName localhost:1234
同时更改 VirtualHost指令中installdir/apache2/conf/bitnami/bitnami.conf
的端口:
<VirtualHost _default_:1234>
HTTPS端口
Apache在端口443上等待HTTPS请求。通过编辑installdir/apache2/conf/bitnami/bitnami.conf
文件并修改端口指令中指定的值来更改它。例如:
Listen 8443
<VirtualHost _default_:8443>
在这两种情况下,请重新启动Apache服务器以使更改生效:
sudo installdir/ctlscript.sh restart apache
注意:在Linux和OS X平台上,以root用户身份安装堆栈 使用1024以下的端口号。