Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions apache/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
These configs allow you to run an Apache that SSL listens on many local ports
with a different certificate on each. This allows you to start up a Firefox
that loads many different certs and tries to report them to the observatory
simultaneously. This can be helpful for reproducing bugs.

Steps:

1. (optional) Run makeconfig.sh
2. /usr/sbin/apache2 -d . -k start
3. In your development Firefox profile, go to
Preferences -> Advanced -> View Certificates
Import -> select certificates/ca.crt
Check the box for "Trust this CA to identify websites"
Click OK
about:config ->
extensions.https_everywhere._observatory.alt_roots = true
extensions.https_everywhere._observatory.enabled = true
extensions.https_everywhere._observatory.use_custom_proxy = true
extensions.https_everywhere._observatory.server_host = localhost:3001
extensions.https_everywhere.LogLevel = 0

4. for n in `seq 3001 3100` ; do firefox https://localhost:$n/ ; done
Loading