".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](/#) VPS主机建站,可以轻松部署操作系统及相关应用。Nginx是世界上最受欢迎的Web服务器之一,占有内存少,其并发能力在同类型的网页服务器中表现良好,能够支持高达五万多个并发连接数响应,那么如何在Debian 10系统上安装Nginx呢?下面就来看下相关命令介绍。
大多数Debian安装程序没有安装sudo,我们可以使用以下命令先安装sudo。
> \# apt install sudo
然后创建一个sudo用户,以非root用户身份执行服务器管理,这里用户密码建议使用强密码,安全性会更高。
> \# adduser example\_user
>
> Adding user \`example\_user’ …
>
> Adding new group \`example\_user’ (1001) …
>
> Adding new user \`example\_user’ (1001) with group \`example\_user’ …
>
> Creating home directory \`/home/example\_user’ …
>
> Copying files from \`/etc/skel’ …
>
> New password:
>
> Retype new password:
>
> passwd: password updated successfully
>
> Changing the user information for example\_user
>
> Enter the new value, or press ENTER for the default
>
> Full Name \[\]: Example User
>
> Room Number \[\]:
>
> Work Phone \[\]:
>
> Home Phone \[\]:
>
> Other \[\]:
>
> Is the information correct? \[Y/n\] y
接下来以新用户身份登录,安装[Nginx](/#)软件包。
> $ sudo apt install nginx
打开配置文件。example.com用您的域名替换。
> $ sudo nano /etc/nginx/sites-available/example.com
在配置文件中添加以下配置保存后退出。example.com用您的域名替换。
> server {
>
> listen 80;
>
> listen \[::\]:80;
>
> server\_name example.com;
>
> root /var/www/html;
>
> index index.html index.htm index.php;
>
> location / {
>
> try\_files $uri $uri/ =404;
>
> }
>
> location \.php$ {
>
> include snippets/fastcgi-php.conf;
>
> fastcgi\_pass unix:/run/php/php7.3-fpm.sock;
>
> }
>
> }
启用配置。
> $ sudo ln -sf /etc/nginx/sites-{available,enabled}/example.com
最后重新加载Nginx,将可看到最新配置。
> $ sudo systemctl reload nginx
相关阅读:《[Vultr教程](/#)》"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105912.html