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!
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

19 rindas
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. }