我正在尝试Virtualhost
在 apache 中设置部分 a以要求客户端身份验证。该VirtualHost
问题也作为实际的Web服务器的反向代理。这是我所做的:
ca.crt
、ca.csr
和ca.key
。VirtualHost
如下所示:...
ProxyPass / http://xxx.xxx.xxx.xxx:80/
ProxyPassReverse / http://xxx.xxx.xxx.xxx:80/
ProxyPassReverseCookiePath / /
SSLEngine On
SSLCertificateFile "/private/etc/apache2/server.crt"
SSLCertificateKeyFile "/private/etc/apache2/server.key"
SSLCertificateChainFile "/private/etc/apache2/ca_bundle.crt"
SSLCACertificateFile "/private/etc/apache2/self_ca.crt"
SSLVerifyClient none
SSLOptions StrictRequire
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
<Location /clientauth>
# These options force the client to authenticate with a client certificate.
SSLVerifyClient require
SSLVerifyDepth 1
</Location>
Run Code Online (Sandbox Code Playgroud)
但我无法浏览到/clientauth …
certificate authentication ssl-certificate certificate-authority apache-2.2
我最近购买了 SSL 证书。证书的的CommonName(CN)是www.mydomain.com
和具有若干AlternativeNames如subdomain1.mydomain.com
,subdomain2.mydomain.com
等
我已经使用 Apache 2.2.17 和 mod_ssl 在服务器上安装了它,一切正常,除了我收到一条警告:
[warn] RSA server certificate CommonName (CN) `www.mydomain.com` does NOT match server name!?
Run Code Online (Sandbox Code Playgroud)
这是因为ServerName
被定义为subdomain1.mydomain.com
。证书仍然有效,但我可以做些什么来消除警告?或者我可以忽略它吗?
这是我用于 Minecraft 服务器和 Web 服务器的旧备用服务器。它目前有 2.5GB 的 RAM。我最近购买了 4GB (4x1GB) 的新 RAM,当我安装它们时,服务器无法启动。风扇启动,主板上没有非绿灯,但实际上并没有启动。
目前的内存是PC3200 400MHz ECC CL3,据我所知,我购买的内存是一样的。有什么办法可以让服务器启动吗?我只尝试使用 2 种新芯片,也尝试过不同的组合,但都没有成功。
编辑:我刚刚注意到当前的一块 RAM 是 PC3200U,其余的只是说 PC3200,而新的 RAM 都是 PC3200R。这是一个问题吗?
内存控制器信息来自dmidecode
:
Handle 0x0005, DMI type 5, 24 bytes
Memory Controller Information
Error Detecting Method: 8-bit Parity
Error Correcting Capabilities:
None
Supported Interleave: One-way Interleave
Current Interleave: One-way Interleave
Maximum Memory Module Size: 1024 MB
Maximum Total Memory Size: 4096 MB
Supported Speeds:
70 ns
60 ns
Supported Memory …
Run Code Online (Sandbox Code Playgroud)