Guest User

Untitled

a guest
Jan 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # FcgidMaxRequestsPerProcess should be <= PHP_FCGI_MAX_REQUESTS
  2. # The example PHP wrapper script overrides the default PHP setting.
  3. FcgidMaxRequestsPerProcess 10000
  4.  
  5. MaxRequestLen 1102400
  6.  
  7. # Uncomment the following line if cgi.fix_pathinfo is set to 1 in
  8. # php.ini:
  9. # FcgidFixPathinfo 1
  10.  
  11. Alias / /home/myuser/public_html/scratch/
  12. <Location />
  13. AddHandler fcgid-script .php
  14. Options +ExecCGI
  15. FcgidWrapper /home/myuser/public_html/scratch/php-wrapper .php
  16.  
  17. # Customize the next two directives for your requirements.
  18. Order allow,deny
  19. Allow from all
  20. </Location>
Add Comment
Please, Sign In to add comment