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!
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

19 satır
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. }