一些信息:
如果我转到mysite.com:9999
,我的网站就像45.40.45.40:9999
..而45.40.45.40
是路由器的公共IP,后跟非标准端口在ubuntu上的虚拟机上连接我的apache服务器。
我使用来自namecheap.com的dns重定向,以便将mysite.com重定向到我的public_ip:used_port_to_connect_Apache,所以它会像我这样:45.40.45.40:9999
在我连接后的网址中。
我的问题是:如何将'45 .40.45.40:9999'转换/返回原来的域名只是mysite.com?
我需要做什么?这是一个Apache配置设置吗?它是Apache服务器上的虚拟主机。
/etc/apache2/sites-available/mysite.com.conf:
Listen 9999
<VirtualHost *:9999>
<Directory /var/www/mysite.com/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ServerAdmin info@mysite.com
ServerName mysite.com
ServerAlias www.mysite.com
DocumentRoot /var/www/mysite.com/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined