diff options
Diffstat (limited to 'rpkid/examples')
-rw-r--r-- | rpkid/examples/myrpki.conf | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/rpkid/examples/myrpki.conf b/rpkid/examples/myrpki.conf index f9331b10..3ef99fd6 100644 --- a/rpkid/examples/myrpki.conf +++ b/rpkid/examples/myrpki.conf @@ -153,17 +153,17 @@ sql-database = ${myrpki::rpkid_sql_database} sql-username = ${myrpki::rpkid_sql_username} sql-password = ${myrpki::rpkid_sql_password} -# Host and port on which rpkid should listen for HTTPS service +# Host and port on which rpkid should listen for HTTP service # requests. server-host = ${myrpki::rpkid_server_host} server-port = ${myrpki::rpkid_server_port} -# HTTPS service URL rpkid should use to contact irdbd. If irdbd is +# HTTP service URL rpkid should use to contact irdbd. If irdbd is # running on the same machine as rpkid, this can and probably should # be a loopback URL, since nobody but rpkid needs to talk to irdbd. -irdb-url = https://${myrpki::irdbd_server_host}:${myrpki::irdbd_server_port}/ +irdb-url = http://${myrpki::irdbd_server_host}:${myrpki::irdbd_server_port}/ # Where rpkid should look for BPKI certs and keys used in the # left-right protocol. The following values match where myirbe.py @@ -189,7 +189,7 @@ sql-password = ${myrpki::irdbd_sql_password} # HTTP service URL irdbd should listen on. This should match the # irdb-url parameter in the [rpkid] section; see comments there. -https-url = https://${myrpki::irdbd_server_host}:${myrpki::irdbd_server_port}/ +http-url = http://${myrpki::irdbd_server_host}:${myrpki::irdbd_server_port}/ # Where irdbd should look for BPKI certs and keys used in the # left-right protocol. The following values match where myirbe.py @@ -221,7 +221,7 @@ sql-password = ${myrpki::pubd_sql_password} publication-base = ${myrpki::publication_base_directory} -# Host and port on which pubd should listen for HTTPS service +# Host and port on which pubd should listen for HTTP service # requests. server-host = ${myrpki::pubd_server_host} @@ -240,9 +240,9 @@ irbe-cert = ${myrpki::bpki_servers_directory}/irbe.cer [irbe_cli] -# HTTPS service URL for rpkid +# HTTP service URL for rpkid -rpkid-url = https://${myrpki::rpkid_server_host}:${myrpki::rpkid_server_port}/left-right/ +rpkid-url = http://${myrpki::rpkid_server_host}:${myrpki::rpkid_server_port}/left-right/ # BPKI certificates and keys for talking to rpkid @@ -251,9 +251,9 @@ rpkid-irbe-key = ${myrpki::bpki_servers_directory}/irbe.key rpkid-irbe-cert = ${myrpki::bpki_servers_directory}/irbe.cer rpkid-cert = ${myrpki::bpki_servers_directory}/rpkid.cer -# HTTPS service URL for pubd +# HTTP service URL for pubd -pubd-url = https://${myrpki::pubd_server_host}:${myrpki::pubd_server_port}/control/ +pubd-url = http://${myrpki::pubd_server_host}:${myrpki::pubd_server_port}/control/ # BPKI certificates and keys for talking to pubd |