summaryrefslogtreecommitdiff
path: root/examples/docker-minimal-separate/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'examples/docker-minimal-separate/frontend')
-rw-r--r--examples/docker-minimal-separate/frontend/Dockerfile13
-rw-r--r--examples/docker-minimal-separate/frontend/catlfish.config38
-rw-r--r--examples/docker-minimal-separate/frontend/frontend42
3 files changed, 0 insertions, 93 deletions
diff --git a/examples/docker-minimal-separate/frontend/Dockerfile b/examples/docker-minimal-separate/frontend/Dockerfile
deleted file mode 100644
index d5391b9..0000000
--- a/examples/docker-minimal-separate/frontend/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM catlfish
-
-ADD logkey/eckey.pem logkey/eckey-public.pem /opt/plop/test/
-ADD catlfish.config /opt/catlfish/rel/
-ADD known_roots /opt/catlfish/rel/known_roots
-ADD https /opt/catlfish/rel/https
-RUN mkdir /opt/catlfish/rel/log
-
-WORKDIR /opt/catlfish/rel
-EXPOSE 8080
-EXPOSE 8082
-
-CMD ["/usr/bin/supervisord"]
diff --git a/examples/docker-minimal-separate/frontend/catlfish.config b/examples/docker-minimal-separate/frontend/catlfish.config
deleted file mode 100644
index 9f5e35d..0000000
--- a/examples/docker-minimal-separate/frontend/catlfish.config
+++ /dev/null
@@ -1,38 +0,0 @@
-%% catlfish configuration file (-*- erlang -*-)
-%% Start like this:
-%% $ erl -boot start_sasl -config catlfish -run inets
-[{sasl,
- [{sasl_error_logger, false},
- {errlog_type, error},
- {error_logger_mf_dir, "log"},
- {error_logger_mf_maxbytes, 10485760}, % 10 MB
- {error_logger_mf_maxfiles, 10}]},
- {catlfish,
- [{known_roots_path, "known_roots"},
- {rejected_certs_path, "rejected"},
- {https_servers,
- [{external_https_api, "0.0.0.0", 8080, v1},
- {frontend_https_api, "0.0.0.0", 8082, frontend}
- ]},
- {https_certfile, "https/certs/ct.cert.pem"},
- {https_keyfile, "https/keys/ct.key.pem"},
- {https_cacertfile, "https/certs/cas.pem"}
- ]},
- {lager,
- [{handlers,
- [{lager_console_backend, info},
- {lager_file_backend, [{file, "log/error.log"}, {level, error}]},
- {lager_file_backend, [{file, "log/debug.log"}, {level, debug}]},
- {lager_file_backend, [{file, "log/console.log"}, {level, info}]}
- ]}
- ]},
- {plop,
- [{entry_root_path, "db/certentries/"},
- {index_path, "db/index"},
- {entryhash_root_path, "db/entryhash/"},
- {treesize_path, "db/treesize"},
- {indexforhash_root_path, "db/certindex/"},
- {storage_nodes,
- ["https://MY-PUBLIC-ADDRESS:10081/ct/storage/"]},
- {storage_nodes_quorum, 1}
- ]}].
diff --git a/examples/docker-minimal-separate/frontend/frontend b/examples/docker-minimal-separate/frontend/frontend
deleted file mode 100644
index 96f9a9b..0000000
--- a/examples/docker-minimal-separate/frontend/frontend
+++ /dev/null
@@ -1,42 +0,0 @@
-%% catlfish configuration file (-*- erlang -*-)
-%% Start like this:
-%% $ erl -boot start_sasl -config catlfish -run inets
-[{sasl,
- [{sasl_error_logger, false},
- {errlog_type, error},
- {error_logger_mf_dir, "log"},
- {error_logger_mf_maxbytes, 10485760}, % 10 MB
- {error_logger_mf_maxfiles, 10}]},
- {catlfish,
- [{known_roots_path, "known_roots"},
- {rejected_certs_path, "rejected"},
- {https_servers,
- [{external_https_api, "0.0.0.0", 8080, v1},
- {frontend_https_api, "0.0.0.0", 8082, frontend}
- ]},
- {https_certfile, "https/certs/ct.cert.pem"},
- {https_keyfile, "https/keys/ct.key.pem"},
- {https_cacertfile, "https/certs/cas.pem"}
- ]},
- {lager,
- [{handlers,
- [{lager_console_backend, info},
- {lager_file_backend, [{file, "log/error.log"}, {level, error}]},
- {lager_file_backend, [{file, "log/debug.log"}, {level, debug}]},
- {lager_file_backend, [{file, "log/console.log"}, {level, info}]}
- ]}
- ]},
- {plop,
- [{entry_root_path, "db/certentries/"},
- {index_path, "db/index"},
- {entryhash_root_path, "db/entryhash/"},
- {treesize_path, "db/treesize"},
- {indexforhash_root_path, "db/certindex/"},
- {storage_nodes,
- ["https://f0.ct.nordu.net:10081/ct/storage/",
- "https://f0.ct.nordu.net:11081/ct/storage/",
- "https://f0.ct.nordu.net:12081/ct/storage/",
- "https://f0.ct.nordu.net:13081/ct/storage/",
- "https://f0.ct.nordu.net:14081/ct/storage/"]},
- {storage_nodes_quorum, 3}
- ]}].