<p style="color:rgb(34,34,34);background-color:rgb(255,255,255);clear:both;vertical-align:baseline;line-height:18px;font-size:14px;font-family:Arial,'Liberation Sans','DejaVu Sans',sans-serif;margin:0px 0px 1em;word-wrap:break-word;border:0px;padding:0px">

I'm trying to change the directory of PHP5-FPM status/ping output. I have a dir 'stats' on HOSTNAME/stats/ protected by auth_basic and I'd like to move the output there! These are my current configs (default ones):</p>

<p style="color:rgb(34,34,34);background-color:rgb(255,255,255);clear:both;vertical-align:baseline;line-height:18px;font-size:14px;font-family:Arial,'Liberation Sans','DejaVu Sans',sans-serif;margin:0px 0px 1em;word-wrap:break-word;border:0px;padding:0px">

Nginx vhost declaration (server block):</p><pre style="white-space:pre-wrap;color:rgb(34,34,34);margin-top:0px;margin-bottom:10px;padding:5px;border:0px;font-size:14px;vertical-align:baseline;background-color:rgb(238,238,238);font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,serif;overflow:auto;width:auto;max-height:600px;line-height:18px">

<code style="margin:0px;padding:0px;border:0px;vertical-align:baseline;font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,serif">### FPM Status
location ~ ^/(status|ping)$ {
  fastcgi_pass unix:/var/run/php5-fpm.sock;
  access_log      off;
}
</code></pre><p style="color:rgb(34,34,34);background-color:rgb(255,255,255);clear:both;vertical-align:baseline;line-height:18px;font-size:14px;font-family:Arial,'Liberation Sans','DejaVu Sans',sans-serif;margin:0px 0px 1em;word-wrap:break-word;border:0px;padding:0px">

In PHP5-FPM conf I have:</p><pre style="white-space:pre-wrap;color:rgb(34,34,34);margin-top:0px;margin-bottom:10px;padding:5px;border:0px;font-size:14px;vertical-align:baseline;background-color:rgb(238,238,238);font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,serif;overflow:auto;width:auto;max-height:600px;line-height:18px">

<code style="margin:0px;padding:0px;border:0px;vertical-align:baseline;font-family:Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace,serif">pm.status_path = /status
ping.path = /ping
</code></pre><p style="color:rgb(34,34,34);background-color:rgb(255,255,255);clear:both;vertical-align:baseline;line-height:18px;font-size:14px;font-family:Arial,'Liberation Sans','DejaVu Sans',sans-serif;margin:0px 0px 1em;word-wrap:break-word;border:0px;padding:0px">

I tried adding a /stats before the / on both nginx/php conf but it doesn't work (file not found). What should I do to move the status/ping output on /stats/ folder? Thanks in advance. :)</p>