Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. server {
  2. listen 80 default_server;
  3. listen [::]:80 default_server ipv6only=on;
  4.  
  5. . . .
  6.  
  7. error_page 404 /custom_404.html;
  8. location = /custom_404.html {
  9. root /usr/share/nginx/html;
  10. internal;
  11. }
  12.  
  13. error_page 500 502 503 504 /custom_50x.html;
  14. location = /custom_50x.html {
  15. root /usr/share/nginx/html;
  16. internal;
  17. }
  18.  
  19. location /testing {
  20. fastcgi_pass unix:/does/not/exist;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement