Nginx部署静态项目

1. 安装Nginx

sudo yum install nginx

2. 创建网站目录

sudo mkdir -p /var/www/my_site

在 /var/www 下为你的站点创建一个目录,如 my_site。

3. 传输本地文件到服务器

使用 scp 或 sftp 从本地电脑上传:

scp -r /本地/项目路径/* 用户名@服务器IP:/var/www/my_site/

将你的 index.html, css, images 等全部上传。也可用FTP工具(如FileZilla)。

4. 设置目录权限

sudo chown -R nginx:nginx /var/www/my_site

sudo chmod -R 755 /var/www/my_site

将目录所有者设为Nginx用户,并设置适当的读取权限。

其实,用root用户也是可以的,为了安全起见,还是用nginx用户和用户组;

5.编辑Nginx站点配置

sudo vim /etc/nginx/conf.d/my_site.conf

conf.d 目录下创建一个新的配置文件,如 my_site.conf

6、写入基础配置

html 复制代码
server {
        listen       8089;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /var/www/my_site;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

关键参数:

  • listen 80: 监听80端口(HTTP)。

  • server_name: 填你的服务器公网IP。如果有域名,填域名。

  • root: 指向你网站文件的根目录(第一步创建的)。

7.检查配置并重载

sudo nginx -t


sudo systemctl start nginx

8.其他的操作

sudo systemctl status nginx

  1. 确保状态是 active (running)

  2. 查看错误日志(最有用!)

    复制代码
    sudo tail -20 /var/log/nginx/error.log
  3. 检查端口监听

    复制代码
    sudo ss -tulpn | grep :8089
相关推荐
大树8823 分钟前
金刚石散热越强,管路越先见顶
大数据·运维·服务器·人工智能·ai
摇滚侠27 分钟前
Linux CentOS7 rpm 安装 MySQL 5.7
linux·运维·mysql
霸道流氓气质1 小时前
领域驱动设计(DDD)在 Spring Boot 微服务中的实践指南
运维·spring boot·微服务
小宇宙Zz1 小时前
Maven依赖冲突
java·服务器·maven
Inhand陈工2 小时前
基于台达PLC与映翰通IG502的智慧水产养殖精准投喂与远程运维解决方案
运维·人工智能·物联网·阿里云·信息与通信
酣大智2 小时前
ARP代理--工作原理
运维·网络·arp·arp代理
shushangyun_2 小时前
2026年快消品B2B系统推荐:支持终端门店订货、促销政策自动化的工具?
java·运维·网络·数据库·人工智能·spring·自动化
古城小栈3 小时前
Unix 与 Linux 异同小叙
linux·服务器·unix
施努卡机器视觉3 小时前
SNK施努卡侧滑门锁上滑轮总成自动化装配线,从零件到组件,全流程精密制造方案
运维·自动化·制造
程序猿阿伟3 小时前
《Chrome离线扩展安装的底层逻辑与场景落地指南》
服务器·网络·chrome