Generate Windows client: unable to verify the first certificate #189
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Thats new.
What do I need to do?
Did you use https when you should use http for your GENURL?
I used https, its behind a apache reverse proxy.
Edit:
changed the docker-compose.yml to http but now I get this Error: {"message":"Invalid URL","data":"{"uuid": "***", "status": "20% complete"}"}
this is also my reverse proxy:
<VirtualHost *:443>
SSLEngine on
ServerName fqdn
SSLCertificateFile /etc/letsencrypt/live/fqdn/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/fqdn/privkey.pem
ErrorLog /var/log/apache2/rdgen-error.log
CustomLog /var/log/apache2/rdgen-access.log combined
ProxyPass / http://ip:8000/
ProxyPassReverse / http://ip5:8000/
<VirtualHost :80>
ServerName fqdn
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.) https://%{SERVER_NAME}/$1 [R,L]
<Proxy http://ip:8000/>
I replaced my fqdn and ip so is not visable here for anyone.