Add DeLiKo 2025 specifics and httpd config to Readme

Change-Id: Icc01f81a0e5fe3525c497d5679302b509e6fa7be
diff --git a/Readme.md b/Readme.md
index a61fe82..ddf9b5a 100644
--- a/Readme.md
+++ b/Readme.md
@@ -64,22 +64,37 @@
 
 The index will be in `target/dnb.index`.
 
-### Run KorAP
+### Run KorAP with DeLiKo-2025@DNB
 
 and start the docker:
 
 ```bash
-INDEX=./target/dnb.index docker compose -p korap4dnb --profile=lite -f korap4dnb-compose.yml up -d
+INDEX=./target/dnb.index docker compose -p deliko-2025 --profile=lite -f deliko-xl-compose.yml up -d
 ```
 
 ### Stop KorAP
 
 ```bash
-docker compose -p korap4dnb down
+docker compose -p deliko-2025 down
 ```
 
 ### Restart KorAP
 
 ```bash
-docker compose -p korap4dnb --profile=lite restart
+docker compose -p deliko-2025 --profile=lite restart
+```
+
+### Open KorAP in browser
+
+```bash
+xdg-open http://localhost:4000/?q=Test
+```
+
+### httpd configuration
+
+```apache
+ProxyPass / http://localhost:4000
+ProxyPassReverse / http://localhost:4000
+ProxyPass /plugin/export http://localhost:7777 # export plugin
+ProxyPassReverse /plugin/export http://localhost:7777
 ```