Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
原因修改NGINX配置后重新启动发现系统报错:
Failed to allocate directory watch: Too many open files
解决方案:
sudo vi /etc/sysctl.conf
文件添加:
fs.inotify.max_user_instances=51200
保存成功后:
sudo sysctl -p
将文件生效 重新启动nginx
sudo service nginx restart