Openproject,apache和/ var / www / html

时间:2016-10-19 09:50:05

标签: apache virtualhost openproject

我遇到了安装在/ var / www / html中的Openproject,Apache和其他应用程序的问题。

当我尝试连接到/ var / www / html甚至index.html中的任何应用程序时,它不起作用,因为它看起来像Openproject conf文件将流量“重定向”到另一个文件夹(我猜的是openproject文件夹)。

这是我的Openproject.conf

Include /etc/openproject/addons/apache2/includes/server/*.conf

<VirtualHost *:80>
  ServerName tools.mydomain.com
  DocumentRoot /opt/openproject/public

  ProxyRequests off

  Include /etc/openproject/addons/apache2/includes/vhost/*.conf

  # Can't use Location block since it would overshadow all the other proxypass directives on CentOS
  ProxyPass /openproject/ http://127.0.0.1:6000/openproject/ retry=0
  ProxyPassReverse /openproject/ http://127.0.0.1:6000/openproject/
</VirtualHost>

以下是我的000-default.conf的内容:

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

当我将openproject.conf中的ServerName更改为其他内容时 tools.mydomain.com我可以访问/ var / www / html中的应用程序,但我无法弄清楚它是如何工作的......我不明白apache的工作原理是这样的..

感谢您的帮助。

4 个答案:

答案 0 :(得分:1)

这是旧线程,但是在安装OpenProject时,我遇到了相同的问题,所有其他VHOST都停止工作。如果我要禁用OP,那么其余所有功能都可以正常运行。
我通过将OP ServerName更改为op-dev并将端口从*:80更改为*:81进行了修复,其中一个重要的地方也是在文件中:

  

/etc/openproject/addons/apache2/includes/server/20_repoman_svn_vhost.conf

在这里您还应该更改:
从“ VirtualHost 127.0.0.1:80”到“ VirtualHost *:80”
 ServerName可以保留为 localhost

现在,所有VHOST都可以正常工作。

答案 1 :(得分:0)

小心端口80,因为对于大多数应用程序来说非常常见。首先,尝试重新加载apache。

sudo service apache2 reload

接下来,如果出现错误,请查看输出。

sudo journalctl -xe

如果一切正常,请注册网站

sudo a2ensite openproject

再次重新加载apache并将以下行添加到/ etc / hosts文件

127.0.1.1 tools.mydomain.com

然后,尝试进入http://tools.mydomain.com:[port]

答案 2 :(得分:0)

您需要做的就是修复该字符串:

 DocumentRoot /opt/openproject/public

指向您的根目录/ var / www / html /

答案 3 :(得分:-1)

我有同样的问题。 如果没有虚拟主机配置的ServerName与客户端请求标头匹配,则将为apache2配置中的第一个虚拟主机提供服务。 这是默认的虚拟主机,因为文件名以000开头。 如果openproject的虚拟主机配置中的ServerName与客户端请求标头匹配,则将不再为默认虚拟主机提供服务。