Mailing List Archive

<Files /images/favicon.ico>
How do I get that the file (docroot)/images/favicon.ico is not loaded from the disk but instead from the /tmp/os-favicon.ico?

<Files /images/favicon.ico>
"/tmp/os-favicon.ico"
</Files>

https://httpd.apache.org/docs/2.4/mod/core.html#files
Is this te best manual?? "# Insert stuff that applies to cat.html here" is not very helpful. How should ever be able to learn/read this from the documentation???



???????????????????????????????????????????????????????????????????????F?V?7V'67&?&R?R???âW6W'2?V?7V'67&?&T?GGB?6?R??&p?f?"FF?F????6????G2?R???âW6W'2?V??GGB?6?R??&p
Re: <Files /images/favicon.ico> [ In reply to ]
On Sat, May 13, 2023 at 11:03?AM Marc <Marc@f1-outsourcing.eu> wrote:
>
> How do I get that the file (docroot)/images/favicon.ico is not loaded from the disk but instead from the /tmp/os-favicon.ico?

Use the Alias directive. https://httpd.apache.org/docs/2.4/urlmapping.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
RE: <Files /images/favicon.ico> [ In reply to ]
> >
> > How do I get that the file (docroot)/images/favicon.ico is not loaded
> from the disk but instead from the /tmp/os-favicon.ico?
>
> Use the Alias directive.
> https://httpd.apache.org/docs/2.4/urlmapping.html
>

Hmmm, so I am ending up with somwthing like this. Is that really the best way to do this?

61 Alias "/images/favicon.ico" "/tmp/os-favicon.ico"
62 <Location /tmp/favicon.ico>
63 Require all granted
64 </Location>

???????????????????????????????????????????????????????????????????????F?V?7V'67&?&R?R???âW6W'2?V?7V'67&?&T?GGB?6?R??&p?f?"FF?F????6????G2?R???âW6W'2?V??GGB?6?R??&p
Re: <Files /images/favicon.ico> [ In reply to ]
You want to use <Directory /tmp> instead. I also strongly recommend storing
your images in another path.

On Mon, May 15, 2023 at 3:48?AM Marc <Marc@f1-outsourcing.eu> wrote:

>
>
> > >
> > > How do I get that the file (docroot)/images/favicon.ico is not loaded
> > from the disk but instead from the /tmp/os-favicon.ico?
> >
> > Use the Alias directive.
> > https://httpd.apache.org/docs/2.4/urlmapping.html
> >
>
> Hmmm, so I am ending up with somwthing like this. Is that really the best
> way to do this?
>
> 61 Alias "/images/favicon.ico" "/tmp/os-favicon.ico"
> 62 <Location /tmp/favicon.ico>
> 63 Require all granted
> 64 </Location>
>
>
RE: <Files /images/favicon.ico> [ In reply to ]
/tmp is just an example. Files are located elsewhere, actually at a location where the rest should not be available/accessible. I only want to 'redirect' this file.

>
> You want to use <Directory /tmp> instead. I also strongly recommend
> storing your images in another path.
>
> On Mon, May 15, 2023 at 3:48?AM Marc <Marc@f1-outsourcing.eu
> <mailto:Marc@f1-outsourcing.eu> > wrote:
>
>
>
>
> > >
> > > How do I get that the file (docroot)/images/favicon.ico is not
> loaded
> > from the disk but instead from the /tmp/os-favicon.ico?
> >
> > Use the Alias directive.
> > https://httpd.apache.org/docs/2.4/urlmapping.html
> >
>
> Hmmm, so I am ending up with somwthing like this. Is that really
> the best way to do this?
>
> 61 Alias "/images/favicon.ico" "/tmp/os-
> favicon.ico"
> 62 <Location /tmp/favicon.ico>
> 63 Require all granted
> 64 </Location>
>
>

???????????????????????????????????????????????????????????????????????F?V?7V'67&?&R?R???âW6W'2?V?7V'67&?&T?GGB?6?R??&p?f?"FF?F????6????G2?R???âW6W'2?V??GGB?6?R??&p
Re: <Files /images/favicon.ico> [ In reply to ]
Well, we can't guess that you provided the wrong path. Hence the
recommendation for better filesystem locations.

On Mon, May 15, 2023 at 10:03?AM Marc <Marc@f1-outsourcing.eu> wrote:

> /tmp is just an example. Files are located elsewhere, actually at a
> location where the rest should not be available/accessible. I only want to
> 'redirect' this file.
>
> >
> > You want to use <Directory /tmp> instead. I also strongly recommend
> > storing your images in another path.
> >
> > On Mon, May 15, 2023 at 3:48?AM Marc <Marc@f1-outsourcing.eu
> > <mailto:Marc@f1-outsourcing.eu> > wrote:
> >
> >
> >
> >
> > > >
> > > > How do I get that the file (docroot)/images/favicon.ico is not
> > loaded
> > > from the disk but instead from the /tmp/os-favicon.ico?
> > >
> > > Use the Alias directive.
> > > https://httpd.apache.org/docs/2.4/urlmapping.html
> > >
> >
> > Hmmm, so I am ending up with somwthing like this. Is that really
> > the best way to do this?
> >
> > 61 Alias "/images/favicon.ico" "/tmp/os-
> > favicon.ico"
> > 62 <Location /tmp/favicon.ico>
> > 63 Require all granted
> > 64 </Location>
> >
> >
>
>