IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
439B

  1. # This is a default site configuration which will simply return 404, preventing
  2. # chance access to any other virtualhost.
  3. server {
  4. listen ${PORT0} default_server;
  5. listen [::]:${PORT0} default_server;
  6. # Everything is a 404
  7. location / {
  8. return 404;
  9. }
  10. # You may need this to prevent return 404 recursion.
  11. location = /404.html {
  12. internal;
  13. }
  14. }