Re: [users@httpd] apache reverse proxy question -- i think

2024-07-13 Thread Frank Gingras
On Sat, Jul 13, 2024 at 5:25 AM Marc wrote: > You can't do this with something like alias? > > Alias "/images/logo.svg" "/var/www/html/berat/public/logo.svg" > > > > > I'd like something like:: > > > >ProxyPass /logo.svg http://1.2.3.4/berat/public/logo.svg > >ProxyPassReverse /logo.svg

RE: [users@httpd] apache reverse proxy question -- i think

2024-07-13 Thread Marc
You can't do this with something like alias? Alias "/images/logo.svg" "/var/www/html/berat/public/logo.svg" > > I'd like something like:: > >ProxyPass /logo.svg http://1.2.3.4/berat/public/logo.svg >ProxyPassReverse /logo.svg http://1.2.3.4/berat/public/logo.svg > doesn't work >

Re: [users@httpd] apache reverse proxy question -- i think

2024-07-12 Thread bruce
I'd like something like:: ProxyPass /logo.svg http://1.2.3.4/berat/public/logo.svg ProxyPassReverse /logo.svg http://1.2.3.4/berat/public/logo.svg doesn't work ProxyPass logo.svg http://1.2.3.4/berat/public/logo.svg ProxyPassReverse logo.svg http://1.2.3.4/berat/public/log

Re: [users@httpd] apache reverse proxy question -- i think

2024-07-12 Thread Frank Gingras
On Fri, Jul 12, 2024 at 6:12 PM bruce wrote: > I have a situation where I'm trying to create a foo.config file for a > test apache app. > > in the html of the app, i have a href="/test.svg". > > the actual test.svg resides in the physical dir: > /var/www/html/berat/public/test.svg > > so I'm try