Advertisement
hanifmu

PHP-FPM Nginx

Jan 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. location ~ \.php$ {
  2. root /usr/share/nginx/html
  3. fastcgi_pass 127.0.0.1:9000;
  4. fastcgi_index index.php;
  5. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name
  6. include fastcgi_params;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement