您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

nginx.conf 414B

1234567891011121314151617181920
  1. events {
  2. }
  3. worker_processes 1;
  4. pid ${RSPAMD_TMPDIR}/nginx.pid;
  5. error_log ${RSPAMD_TMPDIR}/error.log;
  6. http {
  7. default_type application/octet-stream;
  8. sendfile on;
  9. server {
  10. # no need for root privileges
  11. listen ${NGINX_ADDR}:${NGINX_PORT};
  12. server_name localhost;
  13. location / {
  14. root ${RSPAMD_TMPDIR};
  15. autoindex on;
  16. }
  17. }
  18. }