阿里云服务器配置开发环境第八章:Centos7.3配置Nginx

Nginx转发

接着上篇文章说

cd /usr/local/nginx/conf/vhost
vi ***.***.com.conf

添加以下内容

server {
    listen 80; # 映射端口
    autoindex on;
    server_name ***.com; # 映射地址
    access_log /usr/local/nginx/logs/access.log combined;
    index index.html index.htm index.jsp index.php;
    #error_page 404 /404.html;
    if ( $query_string ~* ".*[\;'\<\>].*" ){
        return 404;
    }
    location / {
    proxy_pass http://127.0.0.1:8080; # 你要转发的地址
    add_header Access-Control-Allow-Origin *;
    }
}

Nginx做文件服务器

server {
    listen 80;
    autoindex off;
    server_name ***.com;
    access_log /usr/local/nginx/logs/access.log combined;
    index index.html index.htm index.jsp index.php;
    #error_page 404 /404.html;
    if ( $query_string ~* ".*[\;'\<\>].*" ){
        return 404;
    }

    location / {
        root /ftpfile/; # 你的服务器ftp文件地址
        add_header Access-Control-Allow-Origin *;
    }
}

重启Nginx

/usr/local/nginx/sbin/nginx -s reload
    原文作者:Simon
    原文地址: https://segmentfault.com/a/1190000010545711
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞