Advertisement
Guest User

Untitled

a guest
May 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <Directory /var/www/siteName/public_html>
  2. Options FollowSymLinks MultiViews
  3. AllowOverride All
  4. Require all granted
  5.  
  6. <IfModule mod_proxy_fcgi.c>
  7. # Run php-fpm via proxy_fcgi
  8. <FilesMatch ".+\.ph(p[3457]?|t|tml)$">
  9. # Or however you have it now
  10. SetHandler "proxy:unix:/var/run/php-fpm_siteName.sock|fcgi://localhost"
  11. </FilesMatch>
  12. </IfModule>
  13. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement