Recent posts

#41
Third-party Modules / Re: SSO Mod windows Where to f...
Last post by Gregg - April 19, 2023, 09:11:02 PM
here's one
#42
Third-party Modules / Re: SSO Mod windows Where to f...
Last post by SebaFR74 - April 19, 2023, 07:25:07 PM
Quote from: Gregg on April 19, 2023, 02:08:56 AMx64 or x86
Ho ho, thanks, both if possible

Thanks a lot.
#43
Third-party Modules / Re: SSO Mod windows Where to f...
Last post by Gregg - April 19, 2023, 02:08:56 AM
x64 or x86
#44
Third-party Modules / SSO Mod windows Where to find ...
Last post by SebaFR74 - April 18, 2023, 09:43:34 AM
Hi, i use apache 2.4 on windows and i am trying to use the SSO on windows apache, using the mod_authnz_sspi, but the website apachehaus.net containing this mod is down, and there is no other link anywehere ?

i tried other mod, but none is working.

Anyone Can give me a link to this mod, or is there an other mod working for SSO ?

thanks a lot
#46
News & General Discussion / Re: OpenSSL 1.1.1q
Last post by mario - April 08, 2023, 11:05:16 PM
You can use the RSS of this forum for updates. Plus the forum allows you to receive mails from the announcements.
#47
News & General Discussion / Re: OpenSSL 1.1.1q
Last post by leighsagna - April 07, 2023, 06:32:17 PM
Is there a way to get emails when the new version of OpenSSL is applied to an update? Eg. OpenSSL 1.1.1t.

Or a way to get emails when announcements are posted? I am new to the forum, and I appreciate any answers I am given; thank you! :)
#48
Apache 2.4 / Re: Reverse proxy with ssl on ...
Last post by mario - March 17, 2023, 11:47:16 AM
You don't need to load

proxy_ajp      --> for ajp:// protocol
proxy_balancer --> loadbalancer
proxy_connect  --> for https://
proxy_html     --> if you need to change the HTML from the reversed server.
#49
Apache 2.4 / Re: Reverse proxy with ssl on ...
Last post by mario - March 17, 2023, 08:54:25 AM
First, you can run httpd.exe -S to do a syntax check.
Also what is in the D:/Apps/httpd-2.4.55-o111s-x64-vs17/Apache24/logs/error.log ?
#50
Apache 2.4 / Reverse proxy with ssl on Wind...
Last post by mapomme1108 - March 16, 2023, 10:16:23 PM
Hello,

I want to install a reverse proxy with ssl on Windows 11

For the moment, I use the ssl provided by apache but I plan to use Let's Encrypt

I use httpd-2.4.55-o111s-x64-vs17

I have created an apache service with this command :
httpd.exe -k install -n "Apache24"
I have commented out these modules in hppd.conf :
proxy proxy_ajp proxy_http rewrite deflate headers proxy_balancer proxy_connect proxy_html ssl
I have added this line in httpd.conf
Include conf/reverse_proxy/*.confListen 9033
I have created mysite.conf in conf/reverse_proxy
<VirtualHost *:9033>
SSLEngine On
SSLCertificateFile "D:/Apps/httpd-2.4.55-o111s-x64-vs17/Apache24/conf/ssl/server.crt"
SSLCertificateKeyFile "D:/Apps/httpd-2.4.55-o111s-x64-vs17/Apache24/conf/ssl/server.key"
SSLProxyEngine on
ProxyPreserveHost On
ServerName xxx.xxx.xxx
ProxyPass / http://127.0.0.1:9038
ProxyPassReverse / http://127.0.0.1:9038
RequestHeader set X-Forwarded-Proto "https"
</VirtualHost>

I tried to restart the Apache24 service but it failed.
If I disable proxy_balancer, the Apache24 service start but when I go to "https://localhost:9033"
there is a page saying that there is a web server error

Can you help me ?

Thanks :)