- by admin
I have got an error generated by Apache while configuring Plexcel (PHP Active Directory module):Error 400: Your browser sent a request that this server could not understand.
Size of a request header field exceeds server limit.
LimitRequestFieldSize 16380
- by admin
I have got a PFX made with Windows Certificate Services to be installed on Apache. So, using OpenSSL the file (source.pfx) has been converted to Apache compatible format:openssl pkcs12 -in source.pfx -clcerts -nokeys -out dest.cer
openssl pkcs12 -in source.pfx -nocerts -nodes -out dest.key
dest.cer
, the second one extracts private key to dest.key
.<VirtualHost 192.168.0.1:443>
...
SSLEngine on
SSLCertificateFile /path/to/dest.cer
SSLCertificateKeyFile /path/to/dest.key
...
- by admin
This day I had a problem while indexing French and Russian content with Apache Solr: French and Russian characters where corrupted.URIEncoding="UTF-8"
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />