Re: VHost Guidance

2015-04-20 Thread JACK LINKERS
Hi, I'm not sure what you did, but nginx.conf file, is only used to configure the http server, not vhosts. There is 2 ways to setup vhosts (called server blocs in NginX) : A. Use the default config file (usually located @ /etc/nginx/sites-available/default) and add all your vhosts there. The defa

403 Forbidden

2015-03-07 Thread JACK LINKERS
Hi I can't access my domain after installing nginx and coinfigurong the default server conf file : # You may add here your # server { # ... # } # statements for each of your virtual hosts to this file ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx

Re: server bloc conf ?

2015-03-06 Thread JACK LINKERS
ied Virtualization Administrator > • LPIC-3 - Senior Level Linux Certification > • Novell Certified Linux Administrator - Suse 11 > • OCA - Oracle Enterprise Linux Administrator Certified Associate > > On Fri, Mar 6, 2015 at 2:58 PM, JACK LINKERS > wrote: > >> Hell

server bloc conf ?

2015-03-06 Thread JACK LINKERS
Hello, I used to use sites-available & sites-enabled in a previous version of NginX. I compiled it from source with ngx_pagespeed module on another VPS. I don't see anymore the folders available / enabled. On the other hand I noticed in /etc/nginx/nginx.conf this line : include conf.d/*.conf; I'm

Re: 301 redirect

2015-02-14 Thread JACK LINKERS
Ok, thanks ! 2015-02-14 23:37 GMT+01:00 Francis Daly : > On Sat, Feb 14, 2015 at 11:30:19PM +0100, JACK LINKERS wrote: > > Hi there, > > > Thanks for your input. What would be the best ways doing it then ? > > (I forgot to mention there is a large amount of URLs : +/-

Re: 301 redirect

2015-02-14 Thread JACK LINKERS
not, could you show me an example ? Thanks in advance 2015-02-14 23:22 GMT+01:00 Francis Daly : > On Sat, Feb 14, 2015 at 10:57:26PM +0100, JACK LINKERS wrote: > > > But how do I redirect URLs that have been changed ? > > ie. https://mywebsite.com/oldname.html to >

301 redirect

2015-02-14 Thread JACK LINKERS
Hello, I need to redirect some URLs after redesigning my website. I use a 301 redirect for HTTP to HTTPS protocole : if ($scheme = "http") { return 301 https://$server_name$request_uri; } But how do I redirect URLs that have been changed ? ie. https://mywebsite.com/oldname.html to https://mywebs

Restrict URL access with pwd

2015-01-15 Thread JACK LINKERS
Hi all, How can I restrict access to my website with a password like with a .htaccess file please? Thanks ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Best Hosting Panel to use with Nginx

2014-11-22 Thread JACK LINKERS
Hi guys, I fell in love with Nginx and want to use it on every server I'm setting up. What hosting admin panel would you recommend to use with Nginx ? I want to use Nginx as HTTP server insteads of Apache. Thanks ___ nginx mailing list nginx@nginx.org h

Re: too many redirects

2014-11-21 Thread JACK LINKERS
Hi guys, if ($scheme = "http") { return 301 https://$server_name$request_uri; } Did the job indeed ! Thanks again all for your time and patience ! All the best ! 2014-11-21 20:29 GMT+01:00 Francis Daly : > On Fri, Nov 21, 2014 at 09:02:01AM +0100, JACK LINKERS wrote:

Re: too many redirects

2014-11-21 Thread JACK LINKERS
spconfig. As you can see, the template doesn't make separate server blocks for each HTTP & HTTPS protocole : http://pastebin.fr/37523 And once again, thanks for your time / patience / help. Regards 2014-11-21 1:09 GMT+01:00 Francis Daly : > On Thu, Nov 20, 2014 at 10:07:22PM +0100, JA

Re: too many redirects

2014-11-20 Thread JACK LINKERS
idn't managhe to enclose the 301 in if statements I think i'm gonna givin up 2014-11-20 10:27 GMT+01:00 JACK LINKERS : > Hi guys, > > Thanks for your fast reply and input. > I didn't think of wordpress at all. > > I'll try some tuning and keep you posted. > >

Re: too many redirects

2014-11-20 Thread JACK LINKERS
Hi guys, Thanks for your fast reply and input. I didn't think of wordpress at all. I'll try some tuning and keep you posted. Thanks again Le 20 nov. 2014 09:52, "B.R." a écrit : > On Thursday, November 20, 2014, JACK LINKERS >> wrote: >> >>> rewr

too many redirects

2014-11-20 Thread JACK LINKERS
Hello, I try to force SSL redirect on my website, but I'm getting a ERR_TOO_MANY_REDIRECTS. I can't figure what's wrong, here is my vhost .conf file : server { listen *:80; listen *:443 ssl; ssl on; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_certificate /var/www/clients/client2/web1/ssl/d

Fwd: .conf files

2014-02-12 Thread jack linkers
> > Hello there, > > Does anybody can check my .conf files and maybe comment suggest good ones > for prestashop please ? > > Attached you'll find my domain .conf && my nginx.conf files > > Thanks in advance for time / help ! > > > user www-data; worker_processes 4; pid /run/nginx.pid; events {

Re: missing /etc/nginx/sites-available

2014-02-10 Thread jack linkers
Leaving directory `/tmp/nginx-1.4.4' > > Do you see something in /usr/local/nginx? If not, try searching directly > for the nginx.conf file. > > > On Mon, Feb 10, 2014 at 8:46 AM, jack linkers wrote: > >> Hello, >> >> I'm new to linux

missing /etc/nginx/sites-available

2014-02-10 Thread jack linkers
Hello, I'm new to linux and webservers, but I have a brain and C# background. I installed ngx_pagespeed with nginx on a fresh ubuntu 13.10 following this tutorial : https://developers.google.com/speed/pagespeed/module/build_ngx_pagespeed_from_source I installed everything under root directory, suc