Ssl
如何將 webmin 綁定到一個特定的域/虛擬主機?
我正在執行具有三個特定域的虛擬專用伺服器。假設 example1.com、example2.com、example3.com。
我在這個 VPS 上安裝了 webmin 來執行一些簡單的任務,並且只是在一個友好的 GUI(Bootstrap 3 Webmin 主題)中管理一些操作。
我已經將 webmin 綁定到一個非預設埠,以使其與 CloudFlare 的靈活 SSL 兼容。CloudFlare 在埠 8443 上支持它的免費靈活 SSL,所以我決定在埠 8443 上執行 Webmin,而不是預設埠 10000。
現在所有虛擬主機上都可以訪問 webmin 埠。所以我可以通過域上的 SSL 訪問 webmin。
- example1.com:8443
- example2.com:8443
- example3.com:8443
我實際上希望它只被一個特定的域訪問。所以我只想讓 webmin 工作,例如:
- example4.com:8443
甚至在不同域的埠 443 上,例如:
- example4.com
並且無法在域 1、2 和 3 上的該埠上訪問。有誰知道如何做到這一點?
所有域都在 CloudFlare 後面,CloudFlare DNS 伺服器指向我的 VPS,它只有一個 IPv4 和一個 IPv6 地址。用於管理我的虛擬主機的軟體是 Apache。
Normaly 我會檢查 apache2 / httpd / nginx 或任何你的 webServer 來配置虛擬域。通過這樣做,您可以要求您的 Web 伺服器根據最終使用者輸入的主機名將 HTTP 請求路由到特定位置。
對於 apache2 配置應該是這樣的(特定於 webmin)。使用 example1.com 您的域名,10000 webmin 的埠和
/var/www/html
主 webmin 目錄。
/etc/apache2/sites-available/000-default.conf
:<VirtualHost example1.com:10000> # 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>