我有一台 apache web 服务器,它托管一个带有 SSL 证书的网站,而 nginx 服务器也托管一个网站(nodejs),但没有 SSL。我想将托管在 nginx 上的域名配置为也具有 SSL,但我不知道该怎么做。nginx 服务器的配置如下:
server {
listen 8080;
server_name example.com www.example.com;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
并且 apache2.conf 如下:
<VirtualHost MYIPADDRESS:80>
ServerName example.com
ServerAlias *.example.com
ErrorLog /var/www/httpd-logs/example.com.error.log
ProxyPass / http://example.com:8080/
ProxyPassReverse / http://example.com:8080/
SSLProxyEngine On
SSLProxyCheckPeerCN on
SSLProxyCheckPeerExpire on
ServerAdmin [email protected]
</VirtualHost>
我尝试过很多方法,但最终总是破坏 apache 托管域,我希望有人可以提供帮助。
答案1
将 apache 移至 nginx 就完成了。