0
我正在使用wordpress圖像運行數字海洋液滴。這似乎是運行apache2作爲前端服務器。在Apache2上打開端口
我想在後面運行第二臺服務器,以在不同的域上提供瓶子應用程序,基本上共享相同的液滴。
我不能爲了我的生活得到這個工作。
我已將此添加到ports.conf
:Listen 8079
後來我把這個添加到sites-enabled/000-default.conf
:
<VirtualHost *:8079>
ServerAdmin [email protected]
DocumentRoot /var/www/html
<Directory /var/www/html/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我想運行一個簡單的python服務器來測試,但我似乎無法得到它開始是因爲Python聲稱端口正在使用。我可以重新配置正在加載的端口,但同樣的事情發生。我假設apache保留這個端口。
python -m SimpleHTTPServer 8079
任何幫助是極大的讚賞。