ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

CentOS7.5 nginx安装配置(php)

2021-03-21 12:01:30  阅读:417  来源: 互联网

标签:index log nginx NGINX html error php CentOS7.5


下载与安装

wget http://nginx.org/download/nginx-1.9.9.tar.gz
tar -zxvf nginx-1.9.9.tar.gz
cd nginx-1.9.9/
# 默认安装目录是/usr/local/nginx
./configure --with-http_ssl_module
make -j4 && make install

配置nginx

cat << EOF > /usr/local/nginx/conf/nginx.conf
#user  nobody;
worker_processes  1;

error_log  /var/logs/error.log;
# error_log  /var/logs/error.log  notice;
# error_log  /var/logs/error.log  info;

# pid        /var/logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #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  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  192.168.31.100;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        root   /var/www/html;
        index  index.php index.html index.htm;
        location / {
            root   html;
            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$ {
        	# php cgi监听端口是9000
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }

        # 本地缓存
        # location ~ .*\.(gif|jpg|jpeg|png)$ {
            # expires           10s;
        # }
#
        # location~ .*\.(css|js)$ {
            # expires           30m;
        # }

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

启动脚本

cat << EOF > /etc/init.d/nginx
#! /bin/bash

PATH=/usr/local/nginx
NGINX_EXEC=$PATH/sbin/nginx
NGINX_CONF=$PATH/conf/nginx.conf

case "$1" in
    start)
        echo "Starting nginx..."
        $NGINX_EXEC
    ;;
    stop)
        echo "Stopping nginx..."
        $NGINX_EXEC -s stop
    ;;
    reload)
        echo "Reloading nginx..."
        $NGINX_EXEC -c $NGINX_CONF
        $NGINX_EXEC -s reload
    ;;
    restart)
        echo  "Restarting nginx..."
        $NGINX_EXEC -s stop
        $NGINX_EXEC
    ;;
    *)
        echo "Usage: $0 {start|stop|reload|restart}"
    ;;
esac

EOF
# 开放端口
firewal-cmd --add-port=80/tcp --zone=public --permanent
firewal-cmd --add-port=443/tcp --zone=public --permanent
systemctl restart firewlld
firewall-cmd --list-port
# 启动
service nginx  start
# 停止
service nginx stop
# 重启
service nginx restart
# 重载
service nginx reload

标签:index,log,nginx,NGINX,html,error,php,CentOS7.5
来源: https://blog.csdn.net/qq_41105107/article/details/115046882

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有