Boys and girls,look here,cheap cosplay costumes are here!

2013-09-09 Thread Russ
As such, when in costumes, cosplayers will often aim to look at the impact, gestures and gestures of the figures they represent (with "out of character" breaks). The figures selected to be cosplayed may be procured from any films, TV sequence, guides, comics, games or music groups, but the exercise

There are cosplay costumes which will make you more charming!

2013-09-09 Thread Russ
Cosplay costumes differ significantly and can range from simple designed costumes to extremely specific costumes. Cosplay is generally regarded different from Hallow's eve and Mardi Gras costumes wear, as the objective is to perfectly duplicate a specific personality, rather than to indicate the li

Re: [DOC] Guide to Nginx + SSL + SPDY

2013-09-09 Thread Paul N. Pace
We had a discussion on this list recently about using gzip in the SSL block. On Aug 17 Igor Sysoev wrote: >You have to split the dual mode server section into two server server sections >and set "gzip off" >SSL-enabled on. There is no way to disable gzip in dual mode server section, >but if you

Re: [DOC] Guide to Nginx + SSL + SPDY

2013-09-09 Thread Patrick Lists
On 09/09/2013 03:53 PM, AJ Weber wrote: This is a nice write-up. Thank you. Does anyone know why SPDY is not enabled for the default builds yet, if it's in the "stable branch"? I just tried downloading 1.4.2 (CentOS 6 x64) and it's not configured. My guess is that's because CentOS 6 does not

Re: [DOC] Guide to Nginx + SSL + SPDY

2013-09-09 Thread AJ Weber
Ugh. Thanks. I missed that. -AJ On 9/9/2013 11:10 AM, Valentin V. Bartenev wrote: On Monday 09 September 2013 17:53:54 AJ Weber wrote: This is a nice write-up. Thank you. Does anyone know why SPDY is not enabled for the default builds yet, if it's in the "stable branch"? I just tried dow

Re: [DOC] Guide to Nginx + SSL + SPDY

2013-09-09 Thread Valentin V. Bartenev
On Monday 09 September 2013 17:53:54 AJ Weber wrote: > This is a nice write-up. Thank you. > > Does anyone know why SPDY is not enabled for the default builds yet, if > it's in the "stable branch"? I just tried downloading 1.4.2 (CentOS 6 > x64) and it's not configured. > It requires OpenSSL 1

Re: [DOC] Guide to Nginx + SSL + SPDY

2013-09-09 Thread AJ Weber
This is a nice write-up. Thank you. Does anyone know why SPDY is not enabled for the default builds yet, if it's in the "stable branch"? I just tried downloading 1.4.2 (CentOS 6 x64) and it's not configured. Thanks, AJ On 9/8/2013 1:50 PM, mex wrote: hi list, i recently had to dig deepe

Re: Re[2]: Rewrite URL to only show value of $_GET argument

2013-09-09 Thread Andrew Martin
If I use this line: rewrite ^/index\.php(.*)$ http://mysite.com/$arg_title? redirect; /index.php?title=my_test_page redirects to /my_test_page This is the URL I am looking for, but it still results in a 404, with this displayed in the log: [error] 16077#0: *156649 FastCGI sent in stderr: "Primary

Re[2]: Rewrite URL to only show value of $_GET argument

2013-09-09 Thread wishmaster
--- Original message --- From: "Andrew Martin" Date: 9 September 2013, 15:53:01 > Thanks for the suggestions. I was not able to get $arg_title to work. Here is > the relevant section of my nginx config:        server_name mysite.com; > > > > > try_files $uri $uri/ index.php; > > > loc

Re: Rewrite URL to only show value of $_GET argument

2013-09-09 Thread Andrew Martin
Thanks for the suggestions. I was not able to get $arg_title to work. Here is the relevant section of my nginx config: server_name mysite.com; try_files $uri $uri/ index.php; location / { rewrite ^/index\.php?title=(.*)$ http://mysite.com/$arg_title redire

Re: Nginx update problem

2013-09-09 Thread Sergey Budnevitch
On 9 Sep2013, at 13:51 , litux wrote: > When trying to update the nginx package on debian 8.0 jessie > > This is the error message > > `Preparing to replace nginx 1.4.1-3 (using > .../nginx_1.4.2-1~squeeze_amd64.deb) ... > Unpacking replacement nginx ... > dpkg: error processing > /var/cache/

Nginx update problem

2013-09-09 Thread litux
When trying to update the nginx package on debian 8.0 jessie This is the error message `Preparing to replace nginx 1.4.1-3 (using .../nginx_1.4.2-1~squeeze_amd64.deb) ... Unpacking replacement nginx ... dpkg: error processing /var/cache/apt/archives/nginx_1.4.2-1~squeeze_amd64.deb (--unpack): tr

Re: Secure permission structure for server blocks?

2013-09-09 Thread B.R.
Since the problem comes from the dynamic language PHP, you can create several pools using different user/group pairs. You could use 644 (or 640) permissions with user = PHP user on a specific directory and group = Web server group with read-only permissions. Raw idea of the big picture, There must

Secure permission structure for server blocks?

2013-09-09 Thread - -
Hello everybody, I am trying to wrap my head around this for weeks now. What is the most secure way to organise the permissions of the web root directories (WRD) for several server blocks. Especially when you have PHP applications like Wordpress that download and create files in the WRD? Latter

Re: Rewrite URL to only show value of $_GET argument

2013-09-09 Thread edogawaconan
On Mon, Sep 9, 2013 at 3:58 PM, mex wrote: >> rewrite ^/index\.php?title=(.*)$ http://www.mysite.com/$1 redirect; > > this doesnt work? what is $1 then in the redirected request? > of course this won't work. Query string isn't part of rewrite matching string. Use $arg_title instead. http://ngin