atim520

Members
  • Posts

    99
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

atim520's Achievements

Apprentice

Apprentice (3/14)

5

Reputation

5

Community Answers

  1. 你的网络架构好复杂,复杂就意味着不稳定。为什么不设置成外网访问进nginx,把所有的应用放在nginx后面。
  2. 在“应用”里面的“语言”栏目安装“简体中文语言”包
  3. calibre-web、阅读3服务器版
  4. unraid基于linux,是非常稳定的。
  5. 估计你都做了,还是提醒下: 1.unraid设置里面 ssl/tls 选择关闭(否); 2.swag的proxy.conf配置文件不用该,除非你知道你在干什么; 3.处理问题的思路是从简单到复杂,从最核心的地方一步一步往外面套,比如先把防火墙关了,看看能不能正常使用,再开启防火墙。
  6. ## Version 2023/05/31 # make sure that your dns has a cname set for unraid server { listen 443 ssl http2; #listen [::]:443 ssl; server_name unraid.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth (requires ldap-location.conf in the location block) #include /config/nginx/ldap-server.conf; # enable for Authelia (requires authelia-location.conf in the location block) #include /config/nginx/authelia-server.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable for ldap auth (requires ldap-server.conf in the server block) #include /config/nginx/ldap-location.conf; # enable for Authelia (requires authelia-server.conf in the server block) #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app 192.168.3.4; set $upstream_port 80; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } }
  7. 我觉得既然选择这个软件,遵守他制定的规则是最好的。你能选择的方案,肯定软件开发者也能想到,为什么人家不采用,肯定有不妥当的地方。
  8. 有点不大明白你的想法,unraid6.12版本存储文件使用主存储(比如缓存盘)和辅助存储(比如硬盘),然后通过move来决定文件最终归属,比如move动作为缓存盘---辅助盘,那么就是先用缓存盘接收数据,然后通过定时move,会自动将文件从缓存盘转移(剪切)到辅助盘上。
  9. 同使用linuxserver/swag版本的SWAG进行反向代理,没发觉任何问题。