Unityの覚書

個人的にUnityでやった記録しときたいことを書いておきます

XAMPP - Session Cache is not configuredの対応

http://stackoverflow.com/questions/16644064/xampp-session-cache-is-not-configured-hint-sslsessioncache

上記URLの対策

Here are the instructions how to get rid of the SSLSessionCache message in XAMPP

1) Open file \xampp\apache\conf\httpd.conf

2) Somewhere in the LoadModule area add the following line:

LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
3) Save the file

4) Now open file \xampp\apache\conf\extra\httpd-ssl.conf

5) at line 70 add the line

SSLSessionCache "shmcb:logs/ssl_scache(512000)"
6) Save the file

7) Restart Apache

をやってみたところSSLは動くようになったみたい。

だが、1067エラーはで続けている。