我要在树莓派上运行Apache2以便托管wordpress网站。我目前可以使用http://192.168.1.32/sitename/
通过本地ip访问该网站使用悬停设置域名后,我无法通过域名解析网站,也无法ping通域名或公共IP。
在我的/ etc / apache2 / sites-available中,添加了一个带有以下内容的www.sitename.com.conf:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/sitename
ServerName sitename.com
ServerAlias www.sitename.com
<Directory /var/www/html/sitename>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我将路由器设置为将端口80转发到树莓派的端口80。 在其中有一个/ var / www / html / sitename文件夹,其中包含wordpress php文件。 我试图以各种方式来编辑/ etc / hosts,但无济于事。我想念什么?