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!
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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