web-dashboard-for-clash-with-nginx icon indicating copy to clipboard operation
web-dashboard-for-clash-with-nginx copied to clipboard

This is a web dashboard using nginx for clash for linux

Results 1 web-dashboard-for-clash-with-nginx issues
Sort by recently updated
recently updated
newest added

我使用下面两种配置在 Nginx 里,但都提示 404 Not Found。 ``` server { server_name 192.168.1.4; listen 30000; access_log /var/log/nginx/clash.log; error_log /var/log/nginx/clash.err; location / { root /opt/clash/web-ui/clash.razord.top; index index.html; } } ``` ``` server {...