summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMarkus Krogh <markus@nordu.net>2018-06-13 14:17:52 +0200
committerMarkus Krogh <markus@nordu.net>2018-06-13 14:17:52 +0200
commit264f602151a2b5da550d383ca474d9f8491f4447 (patch)
treefa49b7286adcd69ed6b44e61d097ef2b4e1da4c0 /README.md
parentb2e722cf2be80f856ffcd1ae740578fd1d4ba233 (diff)
Fix nginx dev
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index bb54968..a902497 100644
--- a/README.md
+++ b/README.md
@@ -57,10 +57,11 @@ You can use docker-compose to get up and running. `docker-compose up --build` wi
For rapid testing that does not need to build docker images you can choose to just start the dependencies.
```
-# edit dev/nginx/pwman-go.conf to not have upstream pwman:3000
# In one window
-docker-compose up openldap krb5 nginx
+docker-compose up
# In another (hacky since it is not under gopath)
-go run !(*_test).go -ldap-password secretpw -ldap-port 6636 -ldap-ssl-skip-verify -csrf-insecure -krb5-config dev/krb5.conf -changepw-script data/pwman/log-principal.pl
+go run !(*_test).go -ldap-password secretpw -ldap-port 6636 -ldap-ssl-skip-verify -csrf-insecure -krb5-config dev/krb5.conf -changepw-script data/pwman/log-principal.pl -base-path /dev
+
+# You can now access it on http://localhost/dev
```