1. 程式人生 > >centos7安裝配置nginx

centos7安裝配置nginx

centos7安裝配置nginx

  • 安裝:
    yum  -y  install  nginx
    #  默認目錄是:/usr/share/nginx/html
  • 支持目錄索引:
    技術分享圖片
  • 支持php:
    a. 安裝php-fpm:
    yum  -y  install  php-fpm

    b. 修改php-fpm的配置文件:
    技術分享圖片
    c. 啟動php-fpm服務:

    systemctl  start  php-fpm

    d. 修改nginx配置文件:
    技術分享圖片

  • 開啟pathinfo:
    技術分享圖片
  • 解決跨域:
    技術分享圖片
  • rewrite功能:
    技術分享圖片
  • 配置虛擬主機:
    技術分享圖片
  • 防盜鏈:
    技術分享圖片
  • 配置文件參考:
    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" ‘
    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         /usr/share/nginx/html;
        include /etc/nginx/default.d/*.conf;
        location / {
            add_header ‘Access-Control-Allow-Origin‘ ‘*‘;
            autoindex on;
            autoindex_localtime on;
            if (!-f $request_filename) {
                rewrite /(.*)$ /index.php/$1;
            }
            if (!-d $request_filename) {
                rewrite /(.*)$ /index.php/$1;
            }
        }
        location ~ \.php(.*)$ {
            root html;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            fastcgi_param PATH_INFO $1;
            fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
            include fastcgi_params;
        }
        error_page 404 /404.html;
        location = /40x.html {
        }
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
    }
    server {
        listen       80;
        listen       [::]:80;
        server_name  virtual.dollar.com;
        location / {
            root html/virtual;
            index index.html index.php;
            autoindex on;
            autoindex_localtime on;
        }
        location ~ .*\.(gif|jpg|jpeg|flv|swf|rar|zip|png|bmp)$ {
            valid_referers dollar.com *.dollar.com;
            if ($invalid_referer) {
                rewrite ^/ http://virtual.dollar.com/01.jpg;
            }
        }
    }
    }
  • centos7安裝配置nginx