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个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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