Skip to content

Instantly share code, notes, and snippets.

@kkabetani
Created March 30, 2019 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkabetani/73e9f74bd086f8dfd3a5de72fe28e7eb to your computer and use it in GitHub Desktop.
Save kkabetani/73e9f74bd086f8dfd3a5de72fe28e7eb to your computer and use it in GitHub Desktop.
SSL/TLS を使用してapacheにアクセスして通信の中身を見る
FROM httpd:2.4
COPY ./public-html/ /usr/local/apache2/htdocs/
COPY ./server.crt /usr/local/apache2/conf/
COPY ./server.key /usr/local/apache2/conf/
RUN sed -i \
-e 's/^#\(Include .*httpd-ssl.conf\)/\1/' \
-e 's/^#\(LoadModule .*mod_ssl.so\)/\1/' \
-e 's/^#\(LoadModule .*mod_socache_shmcb.so\)/\1/' \
conf/httpd.conf
RUN sed -i \
-e '/^SSLSessionCacheTimeout/d' \
-e 's/^SSLSessionCache.*$/SSLSessionCache none/g' \
-e 's/^SSLCipherSuite.*$/SSLCipherSuite kRSA/g' \
conf/extra/httpd-ssl.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment