如何从80以外的其他端口访问apache2(来自GCP的linux)的网站?

时间:2016-11-18 04:34:19

标签: linux apache hosting google-cloud-platform

我想通过Linux实例在Google Cloud上托管WordPress网站。 端口80上已经有运行的网站,我希望我的新网站可以在80以外的任何端口上托管。 我已经更改了以下ports.conf和mywebsite.conf来实现这个

/etc/apache2/ports.conf

现有代码

Listen 80

新代码

Listen 80
Listen 8080

我使用VirtualHost创建了以下文件

/etc/apache2/sites-available/mywebsite.conf

代码

<VirtualHost *:8080>
  ServerAdmin adminemail@gmail.com
  DocumentRoot /var/www/mywebsite.com
  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>
  <Directory /var/www/mywebsite.com/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
  </Directory>
  ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  <Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
  </Directory>
  ErrorLog ${APACHE_LOG_DIR}/error.log
  # Possible values include: debug, info, notice, warn, error, crit,
  # alert, emerg.
  LogLevel warn
  CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

进行这些更改后,我只按以下方式运行了一些命令

$sudo a2ensite mywebsite.conf
$service apache2 restart

但当我点击我的网站时,网址为http://IPAdressOfServer:8080/服务器正在返回ERR_CONNECTION_TIMED_OUT。

为了使这一点正确,我到底需要做些什么?

1 个答案:

答案 0 :(得分:0)

您必须从Google Project控制台打开防火墙端口8080。请看这个链接:https://console.cloud.google.com/networking/firewalls/list?project=[your-project-id]。将your-project-id替换为Google项目的ID