本文提供了在 CentOS 服务器上安装和配置 Nginx 的全面指南。它涵盖了详细的安装说明,以及优化性能的最佳实践,包括启用 HTTP/2、缓存和 gzip c
CentOS Nginx、Web 的安装server
要在CentOS服务器上安装NGINX,请按照以下步骤:
up update the System packages:
<code>sudo yum update</code>
-install nginx:
<code>sudo yum install nginx</code>
<code>sudo systemctl start nginx</code>
<code>sudo systemctl enable nginx</code>
启用 HTTP/2:
通过启用 HTTP/2 协议支持来增强性能。在 中创建一个配置文件。
在配置文件中包含以下内容,将“example.com”替换为您的实际域名,将“/usr/share/nginx/html”替换为您网站的根目录:<code>server { listen *:80; server_name example.com www.example.com; root /usr/share/nginx/html; index index.html index.php; }</code>
/etc/nginx/conf.d/
directory, naming it after your desired domain name (e.g., example.com.conf
保存文件。测试配置:
<code>sudo nginx -t</code>
<code>sudo systemctl restart nginx</code>
以上是centos 安装nginx的详细内容。更多信息请关注PHP中文网其他相关文章!