service feature pg_service.conf

2018-02-20 Thread venu.mon...@t-online.de
Hello,
 
is there a similar feature in pgadmin4 like the service option field in 
pgadmin III, that i can use options from ".pg_service.conf"


 
Gesendet mit Telekom Mail  - kostenlos 
und sicher für alle!

Warning when closing

2018-12-06 Thread venu.mon...@t-online.de
Hello,
in 3.4 i got a warning when i tried to close the pgadmin windows in chrome. 
With 3.5 and 3.6 it's without. Can i activate this again ?   


How do i create TLS key and crt for pgadmin webinterface

2019-10-11 Thread venu.mon...@t-online.de
Hi,
 
i tried pgadmin with docker and i didn't get with TLS running
 
docker run -p 80:80 \
-v /$HOME/pgadmin/var_lib:/var/lib/pgadmin \
-e 'PGADMIN_DEFAULT_EMAIL=u...@domain.com' \
-e 'PGADMIN_DEFAULT_PASSWORD=SuperSecret' \
-d dpage/pgadmin4
 
is working
i created a certification and key with
openssl req -new -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out 
MyCertificate.crt -keyout MyKey.key
 
docker run -p 443:443 \
-v /$HOME/pgadmin/var_lib:/var/lib/pgadmin \
-v /$HOME/pgadmin/MyCertificate.crt:/certs/server.cert \
-v /$HOME/pgadmin/MyKey.key:/certs/server.key \
-e 'PGADMIN_DEFAULT_EMAIL=u...@domain.com' \
-e 'PGADMIN_DEFAULT_PASSWORD=SuperSecret' \
-e 'PGADMIN_ENABLE_TLS=True' \
-d dpage/pgadmin4
 
i can't connect. How do i setup this right ?