Linux基本操作

nginx服务器安装和配置

2018-06-16  本文已影响0人  三不小青年

1.添加Nginx到YUM源

添加CentOS 7 Nginx yum资源库,打开终端,使用以下命令:

sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

2.安装Nginx

在你的CentOS 7 服务器中使用yum命令从Nginx源服务器中获取来安装Nginx:

sudo yum install -y nginx

Nginx将完成安装在你的CentOS 7 服务器中。

3.启动Nginx

刚安装的Nginx不会自行启动。运行Nginx:

sudo systemctl start nginx.service

如果一切进展顺利的话,现在你可以通过你的域名或IP来访问你的Web页面来预览一下Nginx的默认页面;

如果看到这个页面,那么说明你的CentOS 7 中 web服务器已经正确安装。

CentOS 7 开机启动Nginx

sudo systemctl enable nginx.service

更多systemctl命令可查看《systemctl命令用法

Nginx配置信息

网站文件存放默认目录

/usr/share/nginx/html

网站默认站点配置

/etc/nginx/conf.d/default.conf

自定义Nginx站点配置文件存放目录

/etc/nginx/conf.d/

Nginx全局配置

/etc/nginx/nginx.conf

Nginx启动

nginx -c nginx.conf

在这里你可以改变设置用户运行Nginx守护程序进程一样,和工作进程的数量得到了Nginx正在运行,等等。

Linux查看公网IP

您可以运行以下命令来显示你的服务器的公共IP地址:

ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'

转载https://blog.csdn.net/u012486840/article/details/52610320


配置之前确保:php-fpm 已启动

server {

    charset utf-8;

    client_max_body_size 128M;

    listen 80;

    server_name baidu.com;//你的域名

    root  /var/www/html/api/web;//你的服务器文件位置

    index  index.php;//index.php入口文件

    location ~* \.(eot|otf|ttf|woff)$ {

      add_header Access-Control-Allow-Origin *;

    }

    location / {

        try_files $uri $uri/ /index.php?$args;

    }

    location ~ \.php$ {

        include  fastcgi_params;

        fastcgi_index    index.php;

        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

        fastcgi_pass  127.0.0.1:9000;

        try_files $uri =404;

    }

}

上一篇下一篇

猜你喜欢

热点阅读