Re: [users@httpd] Re: LAN to WAN access

2021-04-27 Thread Mark Brodis
There are several elements to hosting something with public access from your home, some things are tricky, some are just impossible, depending on your specific situation. 1) You need to know if your Internet access is setup such that your ISP will allow incoming connections to your address, not

Re: [users@httpd] Apache 2.4 can not access server sub-directory

2020-10-29 Thread Mark Brodis
Are you perhaps using httpd on Linux and if so is it a Linux version with selinux? If that's your scenario, take a look at this, with selinux the file permissions are only half the story, you have to categorize data in other directories by setting the type. I just had to do this, was a bit of a

Re: [users@httpd] Reverse proxy

2020-03-24 Thread Mark Brodis
Without knowing exactly how your setup is configured, my guess is the issue is that when you authenticate the first time to the remote site whatever auth logic it's using that is not being persistent for your connection or repeat requests. Typically this would be a cookie, you authenticate

Re: [users@httpd] HTTPS configuration problem.

2014-04-17 Thread Mark Brodis
Do the users actually connect to https://xxx.com; ? Or do they go just to xxx.com in their browser and then a load-balancer/SSL-accellerator somewhere along the way bumps them to https? If something was bumping them to https then it would be easiest to just change that 'bumping' to go from

Re: [users@httpd] Need help with reverse proxying and image loading

2014-01-27 Thread Mark Brodis
I am a n00b with Apache also but I'll take a stab at this. What you are wanting is actually 2 things. A fully functional (for at least one website) forward HTTP proxy and also a domain name change. In my opinion you will never get a functional webpage (at least not something as complex and

Re: [users@httpd] NAS IP

2011-08-08 Thread Mark Brodis
I'm not sure I fully understand the question but the DynDNS service does not have to be supported by your router(s). You can also run a client application on a behind-the-scenes server that will update the DNS mapping if the internet/real IP changes for that server...assuming the outbound traffic

Re: [users@httpd] cookie secure flag

2011-05-23 Thread Mark Brodis
What I have done is do a edit-header to append the Secure onto the Set-Cookie command coming back from the app-container through the web server. The header edit command is only available on 2.2 (likely 3.X also), but not on 2.0. Example: Header edit Set-Cookie ^(.*)$ $1;Secure; -Mark On Mon,