Advertisement
Guest User

Untitled

a guest
Jul 31st, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. worker_processes 1;
  2. events {
  3. worker_connections 1024;
  4. }
  5.  
  6.  
  7. http {
  8. include mime.types;
  9. default_type application/octet-stream;
  10. sendfile on;
  11. keepalive_timeout 65;
  12. server {
  13. listen 80;
  14. server_name thegamesdb.net;
  15. location / {
  16. proxy_pass http://legacy.thegamesdb.net;
  17. }
  18. error_page 500 502 503 504 /50x.html;
  19. location = /50x.html {
  20. root html;
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement