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
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
>
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
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
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 trying to figure out how to handle this. As far as I can tell,
th