> Fine. Just one thing. Can I use apache as a service but run a script on a
> computer startup that disables it, and
> then run a start/stop it again later?
You could write a script that uses the windows commands 'net start
" and "net stop
On Tue, Apr 20, 2021 at 6:25 AM Marcel Roșca wrote:
>
> I configured two sites using the "VirtualHost" method in apache2, but if
> there is an error in the first configuration file when I call my site, it
> enters the second site.
...
> the problem is when an error occurs in one of these two fil
> The OP, ie me, just read up on virtual host configuration. I now understand
> that it is not possible to have site1.conf and site2.conf as in my first
> e-mail where I wanted to access the different sites using 1.2.3.4/site1 and
> 1.2.3.4/site2 etc.
>
> My reading suggests that instead accessi
I'm not sure, but my understanding is that of you have multiple virtual
hosts on one machine, and they all listen on the same interfaces/ip
addresses then they have to have unique ServerName directive. If you have
duplicates, they will all be served by the first virtual host, with a
matching Serve
Is / valid in a ServerName directive? I thought it only included scheme,
host, and port?
Do reach of your virtual hosts have a unique ServerName? x.x.x.x is not a
very descriptive example.
>Why this is a matter to the Apache? In a real scenario, consider that an
Apache Reverse
>Proxy servicing to 100 web servers, one of these servers is turned off
or...Apache must
>service to other servers!!
>I turned off a server to solve this conflict. Why Apache never read
another Virtual
>Host co
ProxyPass is one way to do what you described. Rather than a redirect it
connects to example.com and passes traffic back and forth.
On Mon, Feb 8, 2021, 19:43 Edwardo Garcia wrote:
> Halo,
>
> I have situation where we have, let us say alpha.example.com
> bravo.example.com, we want to redirect
What do you expect the final url to look like? What did you try in mod
rewrite, because i believe it can do what you have described so far.
On Fri, Oct 30, 2020, 08:06 Pennington,Jim wrote:
> I'm using Apache 2.4.7
> I'm currently running and old Apache with customized software and need to
> ch
Let's Encrypt does issue certs with SAN, but you would have to specify the
IP in your CSR, what that looks like depends on what LE you are using.
On Thu, Sep 24, 2020, 11:28 AM Jason Long
wrote:
> I'm using Let's Encrypt. Is it not enough?
>
>
>
>
>
>
> On Thursday, September 24, 2020, 08:45:06
Have you checked your error or access loss for any additional information?
I would also verify that the directory tree has the right SE Linux labels,
that looks like the default root, but it never hurts to check. 'ls -Z'
will give the labels, it should include something like httpd_t I believe.
On
in a PDF available at
http://www.jimjag.com/presos/AC-US-08/ACUS08-AdvancedLoadBalancing-Apache2.2.pdf
it's around page 38.
On Tue, Mar 17, 2020, 8:04 PM Jonathon Koyle wrote:
> This is actually part of the ssl certificate. The certificate has a field
> to identify the host and have t
This is actually part of the ssl certificate. The certificate has a field
to identify the host and have to match the hostname in the URL the Common
Name CN. There is also an optional list Subject Alternative Name SAN that
can be specified if you want one cert to match against various url
hostname
gt;
> -
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>
--
Jonathon Koyle
If you mean sites where you scroll to the "bottom" of the page and it
fetches more content, like Instagram or Facebook, and then the"bottom" is
farther down the page, that is accomplished client side with scripts
running in the browser.
On Mon, Feb 3, 2020, 2:07 PM Antony Stone <
antony.st...@apac
By default, the httpd.conf has the directive Listen 80. If you don't want
Apache to listen on 80 you will need to remove/change it. You are allowed
to have as many listen directives as you want Apache to bind. ServerName
does not usually include a port, and does not specify what IP or port
Apach
m=link>
> <#m_-8740454897196676016_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> On Fri, Jan 11, 2019 at 10:37 PM Jonathon Koyle
> wrote:
>
>> You may also need to look into whether you have a static or dynamic IP
>> address. Many Consumer ISP packages provide dynam
u.
>
>
>
> <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=icon>
> Virus-free.
> www.avast.com
> <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail&utm_term=link>
> <#m_8256112442323143262_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
>
--
Jonathon Koyle
Doesn't get use the authorization header? Is it possible that you are
overriding the provided jwt token when you set the header for your basic
auth?
On Tue, Jan 8, 2019, 09:06 MARASOIU Nicolae-dumitru (renexter) <
nicolae-dumitru.marasoiu-ext...@renault.com wrote:
> Hi all,
>
> We receive this e
One way is to use mod_headers to add the authorization header when passing
the proxied request.
RequestHeader set Authorization "Basic (base64 of the user:pass string)
On Mon, Jan 7, 2019, 02:49 MARASOIU Nicolae-dumitru (renexter) <
nicolae-dumitru.marasoiu-ext...@renault.com wrote:
> Hello ever
> Bill TantzenUniversity of Minnesota Libraries
> 612-626-9949 (U of M)612-325-1777 (cell)
>
> -
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>
--
Jonathon Koyle
Is there a Listen 80 directive anywhere in your configuration files?
On Sat, Dec 1, 2018, 15:22 Jack M. Nilles I have checked the port 80 logs: they are empty. I concluded that the
> problem might lie not with Apache but with the server port configuration.
>
> So I checked the ports on the serve
Largely this is file permissions, depending on your operating system there
may be other considerations, such as SELinux issues. The last thing I can
think of is maybe needing directory and alias directives in the Apache
config.
On Thu, Nov 29, 2018, 14:38 Dave Stevens I want to set up a folder s
s aren't working. I've tried different versions of the redirects --
> with and without double quotes -- and it doesn't seem to make a difference.
>
> How to I get the redirects to function?
>
--
Jonathon Koyle
s in!
> Require host buddy.bigdomain.com ## except this single client
> Require all granted ## and the rest of the
> world!
>
> I'm not sure this can even be done at the apache level, much less how to
> do it.
> Thanks for looking!
> Bill
> On
ngle host.
> --Bill
> On Thu, Nov 29, 2018 at 1:24 PM Jonathon Koyle
> wrote:
> >
> > You want to only allow access to a server at a specific hostname, (that
> is how I understand you question). One way, that would work, is something
> like
> >
> &g
nsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>
--
Jonathon Koyle
, in case it might matter.
>
> Would you have any suggestions as why this might be happening?
>
> Many thanks, L.
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>
--
Jonathon Koyle
DHCP
> activities...)
>
> /georg
>
> - Original Message -
> *From:* Jonathon Koyle
> *To:* users@httpd.apache.org
> *Sent:* Sunday, November 11, 2018 7:25 PM
> *Subject:* Re: [users@httpd] invisible server
>
> Also, UPnP isn't something you should need... From
Turn DHCP back on, then you will have an IP address to which you can
forward traffic.
On Sun, Nov 11, 2018, 09:02 georg chambert Hi again,
> back to the drawing board and this trouble telia router,
>
> It seems that the telia router (connecting to ext network) does not serv
> my
> server with an
Also, UPnP isn't something you should need... From your earlier message,
you listed the needed fields, have you found a different page with
different fields?
On Sun, Nov 11, 2018, 11:23 Jonathon Koyle Turn DHCP back on, then you will have an IP address to which you can
> forward traffic
07 AM Jonathon Koyle
wrote:
> I'm sure he means 443 not 433 (80 and 443 being the standard ports for
> http and https).
>
> On Wed, Oct 31, 2018 at 7:37 AM Freek de Kruijf
> wrote:
>
>> Op woensdag 31 oktober 2018 12:48:42 CET schreef georg.chamb...@telia.com
>> :
&g
gt; to
> 433.
>
> --
> fr.gr.
>
> Freek de Kruijf
>
>
>
>
> -----
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>
--
Jonathon Koyle
I missed a slash in that regular expression (/.*)? rather than (.*)?
On Sun, Oct 28, 2018, 07:26 Jonathon Koyle wrote:
> It may be getting denied by SELinux, I suspect the label on your aliased
> directory die not allow httpd access. You will likely need to look into
> semanage, somet
It may be getting denied by SELinux, I suspect the label on your aliased
directory die not allow httpd access. You will likely need to look into
semanage, something like this may do what you need, but I'm not an expert
at SELinux myself... redhat provides some explanation here:
https://access.redh
Simply to avoid assumptions, did you update php-fpm to 7 as well?
On Sun, Sep 30, 2018, 11:01 @lbutlr wrote:
> On 29 Sep 2018, at 21:02, Frank Gingras wrote:
> > As for the "filter_var" error, you're missing a php extension/module.
>
> No, I'm not. filter is built in to php and is properly list
If you access the server by ip httpd can't differentiate which vhost you
are trying to access, so it returns the default. To access a something
other than the default you need to include the server name, either as the
URL, or maybe you could add it to the request with nginx - before you pass
the r
Oh, I missed that my first time through. Is there anything in the log
files that you specify in the virtual host?
On Fri, Sep 28, 2018, 05:51 Carmel NY wrote:
> On Fri, 28 Sep 2018 05:32:16 -0600, Jonathon Koyle stated:
>
> >On Fri, Sep 28, 2018, 05:10 Carmel NY wrote:
> >
&
I wonder if the :80 in the ServerName directive is causing you grief, since
it isn't passed that way for http?
On Fri, Sep 28, 2018, 05:10 Carmel NY wrote:
> On Fri, 28 Sep 2018 11:21:36 +0200, Sander Smeenk stated:
>
> >Quoting Carmel NY (carmel...@outlook.com):
> >> This is my first attempt to
2.4.x. I'm also
not certain, from the thread, if the problem addressed was intermittent or
not.
Has anybody else seen this behavior or have any suggestions? Updating to a
version of httpd not in a Centos repo is not an option for me,
unfortunately.
Any help is appreciated.
--
Jonathon Koyle
40 matches
Mail list logo