summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.si>2026-03-14 01:07:09 +0100
committerTimotej Lazar <timotej.lazar@araneo.si>2026-03-14 11:37:58 +0100
commit232fc1d97f0eab42ef6f9a00a43d30aa65417dd8 (patch)
treee8288b93b7edfb6cb7f244358f62b547816efa37
parentf1d9b1a291c31b1e11ae13419c5e4679352232ab (diff)
Use localhost for app certificate CN
Had some troubles otherwise.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b4df0a7..e2e433c 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Python script to replace [SETCCE proXSign®](https://proxsign.setcce.si/proXSign
Websites that want to sign XML or PDF documents submit requests to the proXSign® component acting as a local HTTPS server listening on port 14972. To replicate this behavior, a self-signed TLS certificate is required. One can be generated with
openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
- -subj "/CN=fauxsign" -keyout fauxsign.key -out fauxsign.crt
+ -subj "/CN=localhost" -keyout fauxsign.key -out fauxsign.crt
## Usage