Generate Windows client: unable to verify the first certificate #189

Open
opened 2026-01-14 21:02:35 +08:00 by Draakoor · 2 comments
Draakoor commented 2026-01-14 21:02:35 +08:00 (Migrated from github.com)

Thats new.
What do I need to do?

Image
Thats new. What do I need to do? <img width="593" height="499" alt="Image" src="https://github.com/user-attachments/assets/9ae04e1c-1bfa-480f-abf8-b0337f87773b" />
bryangerlach commented 2026-01-18 01:05:09 +08:00 (Migrated from github.com)

Did you use https when you should use http for your GENURL?

Did you use https when you should use http for your GENURL?
Draakoor commented 2026-01-19 16:19:54 +08:00 (Migrated from github.com)

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/>

Require all granted

Options none

I replaced my fqdn and ip so is not visable here for anyone.

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> <VirtualHost *:80> ServerName fqdn RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] </VirtualHost> <Proxy http://ip:8000/> Require all granted Options none </Proxy> I replaced my fqdn and ip so is not visable here for anyone.
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: 3344/rdgen#189