Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-18 Thread Jason Long
esn't allow you to distinguish between 301s and 302s which you >> can do with mod_rewrite {very useful feature tbh when it comes to bits like >> this} - the user is using WordPress so will almost certainly be using >> mod_rewrite to handle the nice URLs >> >>

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-16 Thread Frank
so will almost certainly be using >> mod_rewrite to handle the nice URLs.... >> >> As for the issue without a server name - you don't need one in the 800 >> unless you are doing something clever - as for the redirects it doesn't >> break but you can put one in - jus

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-15 Thread Jason Long
n - just make sure that it is included first! > -Original Message- > From: Frank > Sent: 12 October 2020 18:10 > To: users@httpd.apache.org > Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] > > James, > > Unless the user has many hosts, I would recommend ag

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
n put one in - just make sure that it is included first! > -Original Message- > From: Frank > Sent: 12 October 2020 18:10 > To: users@httpd.apache.org > Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] > > James, > > Unless the user has many hosts,

RE: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread James Smith
lias here for alternative domains - only use > for test/dev sites... > > DocumentRoot /var/www/wp > > > > Options Indexes FollowSymLinks > > AllowOverride all > > Require all granted > > > > > > ## Put the rest of yo

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
> > Options Indexes FollowSymLinks > > AllowOverride all > > Require all granted > > > > > > ## Put the rest of your wordpress stuff here... > > > > > > *From:*Jason Long > *Sent:* 12 October 2020 16:39 > *To:* users@httpd.a

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
rather than just dropping the > requests on the floor > > > -Original Message- > From: Frank > Sent: 12 October 2020 16:36 > To: users@httpd.apache.org > Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] > > James, > > Omitting an e

RE: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
t the rest of your wordpress stuff here...   From: Jason Long Sent: 12 October 2020 16:39 To: users@httpd.apache.org Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT]   Excuse me, Can you clean my configuration?   On Monday, October 12, 2020, 07:06:17 PM GMT+3:30, Fra

RE: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread James Smith
ubject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] Excuse me, Can you clean my configuration? On Monday, October 12, 2020, 07:06:17 PM GMT+3:30, Frank mailto:thu...@apache.org>> wrote: James, Omitting an explicit ServerName in name-based vhosts is a bad idea as well. You can

RE: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread James Smith
the floor -Original Message- From: Frank Sent: 12 October 2020 16:36 To: users@httpd.apache.org Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] James, Omitting an explicit ServerName in name-based vhosts is a bad idea as well. You can create conflicts or ambiguities. O

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
Excuse me,Can you clean my configuration? On Monday, October 12, 2020, 07:06:17 PM GMT+3:30, Frank wrote: James, Omitting an explicit ServerName in name-based vhosts is a bad idea as well. You can create conflicts or ambiguities. On 12/10/20 11:22 AM, James Smith wrote: > This would

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
James, Omitting an explicit ServerName in name-based vhosts is a bad idea as well. You can create conflicts or ambiguities. On 12/10/20 11:22 AM, James Smith wrote: > This would be my set-up in your case - note as someone said it was too > complex I've removed the extra security bits I'd left

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
>>> http://ip/ requests, define another. >>> >>> On 12/10/20 10:26 AM, Jason Long wrote: >>>> Thank you. >>>> I added that lines to my Virtual Host file but it show me "Your > connection is not private". >>>> >>>> &g

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
10:26 AM, Jason Long wrote: >>>> Thank you. >>>> I added that lines to my Virtual Host file but it show me "Your > connection is not private". >>>> >>>> >>>> >>>> >>>> >>>> >>>> On Monday,

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
;> >>> >>> On Monday, October 12, 2020, 05:16:27 PM GMT+3:30, James Smith >>> wrote: >>> >>> >>> >>> >>> >>> Yes - with Apache you put a default virtual host which redirects all >>> traffic to your ht

RE: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread James Smith
This would be my set-up in your case - note as someone said it was too complex I've removed the extra security bits I'd left in by accident... ## Port 80 && 443 default configs... RequestHeader unset X-is-ssl RewriteEngine on RewriteRule ^(.*)$

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
gt;>> >>> >>> >>> >>> >>> >>> On Monday, October 12, 2020, 05:16:27 PM GMT+3:30, James Smith >>> wrote: >>> >>> >>> >>> >>> >>> Yes - with Apache you put a default virtual hos

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
t;> Yes - with Apache you put a default virtual host which redirects all traffic >> to your https server >> >> >>  RequestHeader unset X-is-ssl >>  >>    >>      Require all denied >>    >>    Require all granted >>  >>  ProxyPreserveHost

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank Gingras
>> >> >> RequestHeader unset X-is-ssl >> >> >> Require all denied >> >> Require all granted >> >> ProxyPreserveHost on >> RewriteEngineon >> RewriteRule ^(.*)$ https://myservername.c

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
  >  ProxyPreserveHost on >  RewriteEngine    on >  RewriteRule      ^(.*)$ https://myservername.com%{REQUEST_URI} >[R=permanent,L,NE] > > > You can do something for 443 as well. > > -Original Message- > From: Jason Long > Sent: 12 October 2020 14:10

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Frank
[R=permanent,L,NE] > > > You can do something for 443 as well. > > -Original Message- > From: Jason Long > Sent: 12 October 2020 14:10 > To: users@httpd.apache.org > Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] > > Thank you. >

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread Jason Long
rom: Jason Long Sent: 12 October 2020 14:10 To: users@httpd.apache.org Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] Thank you. I want when a user enter my server IP address in his\her browser then it forward to "https://urldefense.proofpoint.com/v2/url?u=https-3A__myweb

Re: [users@httpd] Forwarding IP to HTTPS.

2020-10-12 Thread Jim Albert
On 10/12/2020 9:09 AM, Jason Long wrote: Thank you. I want when a user enter my server IP address in his\her browser then it forward to "https://mywebsite.com;. Most users will not enter an IP address, but rather a domain name. For those that enter a domain name (https://mywebstie.com) first

RE: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-12 Thread James Smith
%{REQUEST_URI} [R=permanent,L,NE] You can do something for 443 as well. -Original Message- From: Jason Long Sent: 12 October 2020 14:10 To: users@httpd.apache.org Subject: Re: [users@httpd] Forwarding IP to HTTPS. [EXT] Thank you. I want when a user enter my server IP address in his\her

Re: [users@httpd] Forwarding IP to HTTPS.

2020-10-12 Thread Jason Long
Thank you. I want when a user enter my server IP address in his\her browser then it forward to "https://mywebsite.com;. On Monday, October 12, 2020, 12:14:31 PM GMT+3:30, Antony Stone wrote: On Monday 12 October 2020 at 07:25:56, Jason Long wrote: > Hello, > Forwarding an IP

Re: [users@httpd] Forwarding IP to HTTPS.

2020-10-12 Thread Antony Stone
On Monday 12 October 2020 at 07:25:56, Jason Long wrote: > Hello, > Forwarding an IP address to HTTPS domain is the task of Apache or SSL? What do you mean by "forwarding", and what protocol (presumably either HTTP or HTTPS) is being used by the client application which starts the connection

[users@httpd] Forwarding IP to HTTPS.

2020-10-11 Thread Jason Long
Hello, Forwarding an IP address to HTTPS domain is the task of Apache or SSL? Thank you. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org