".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
最近有小伙伴反应[Vultr](/#)主机安装了Windows之后出现Bad Gateway nginx错误提示,遇到这样的情况该怎么处理呢?其实大家不用着急,小编将解决方法帮大家整理处理,希望对大家有所帮助。
![](https://www.idcspy.com/wp-content/uploads/2022/01/shdjfgj.png)
出现这样的问题很多,这个一般来查看日记才知道是什么问题!所以下面的方法如果你使用之后没有效果,可能就是其他的原因了!
解决办法:
1、提升服务器的文件句柄打开打开
vi /etc/security/limits.conf 底部加上
\* soft nofile 51200
\* hard nofile 51200
vi /etc/sysctl.conf 底部添加
fs.file-max=51200
2、提升nginx的进程文件打开数
vi /www/wdlinux/nginx/conf/nginx.conf
worker\_rlimit\_nofile 5120; 改成worker\_rlimit\_nofile 51200;
3、修改php-fpm.conf文件,主要需要修改2处。
vi /www/wdlinux/etc/php-fpm.conf
改成下面的值
4.设置php-fpm自动启动
vi /etc/rc.local 最后增加
/etc/init.d/php-fpm start
完成之后reboot重启下服务器
ulimit -n 查看
以上就是Vultr安装面板后出现Bad Gateway nginx错误提示解决方法,不知道这个方法对你是否有效,大家可以尝试操作一下。
推荐:《[Vultr Block Storage块存储删除教程](/#)》"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/104338.html