Nginx静态网站

1 安装Nginx

在 CentOS6.5 上,可直接使用 yum 来安装 Nginx

yum install nginx -y

2 安装完成后

使用 nginx 命令启动 Nginx:

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf  启动,载入当前配置

这时可以打开你的127.0.0.1:80观看是否成功安装Nginx

3配置静态服务器访问路径

外网用户访问服务器的 Web 服务由 Nginx 提供,Nginx 需要配置静态资源的路径信息才能通过 url 正确访问到服务器上的静态资源。
打开 Nginx 的默认配置文件 /etc/nginx/nginx.conf ,修改 Nginx 配置,将默认的 root /usr/share/nginx/html; 修改为: root /data/www;
文件配置如下

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /data/www;

        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

}

4重启nginx

配置文件将 /data/www/static 作为所有静态资源请求的根路径,如访问: http://127.0.0.1/static/index.js,将会去 /data/www/static/ 目录下去查找 index.js。现在我们需要重启 Nginx 让新的配置生效,如:

nginx -s reload

5重启后

现在我们应该已经可以使用我们的静态服务器了,现在让我们新建一个静态文件,查看服务是否运行正常。
首先让我们在 /data 目录 下创建 www 目录,如:

mkdir -p /data/www

6创建第一个静态文件

在 /data/www 目录下创建我们的第一个静态文件 index.html

index.html代码如下





第一个静态文件


Hello world!

现在访问 http://127.0.0.1/index.html 应该可以看到页面输出 Hello world!

一切结束!

注意:如果你的服务器是公网的服务器的话,80端口不一定能够访问,需要去安全组设置一下策略,开放80端口才能进行访问

附nginx 常用命令:


/usr/local/nginx/sbin/nginx  启动

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf  启动,载入当前配置

/usr/local/nginx/sbin/nginx -t 测试配置

/usr/local/nginx/sbin/nginx -s reload   加载配置--不是重启,但可以当重启使用

/usr/local/nginx/sbin/nginx -s stop    退出

/usr/local/nginx/sbin/nginx -s quit  保持未结束的进程后退出

/usr/local/nginx/sbin/nginx -s reopen 日志重新选择

猜你喜欢

转载自blog.csdn.net/qq_36763236/article/details/81363048
今日推荐