Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name ssh.bshellnet.org;
  4. access_log /srv/www/ssh.bshellnet.org/logs/access.log;
  5. error_log /srv/www/ssh.bshellnet.org/logs/error.log;
  6. root /srv/www/ssh.bshellnet.org/public_html;
  7. index index.php index.html index.htm;
  8.  
  9. location ~ ^/~([^/]*)(.*)\.php$ {
  10. include /etc/nginx/fastcgi_params;
  11. fastcgi_pass 127.0.0.1:9000;
  12. fastcgi_index index.php;
  13. fastcgi_param SCRIPT_FILENAME /srv/www/ssh.bshellnet.org/public_html$fastcgi_script_name;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement