国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

阿里云服務(wù)器配置開發(fā)環(huán)境第八章:Centos7.3配置Nginx

Meathill / 3149人閱讀

摘要:轉(zhuǎn)發(fā)接著上篇文章說添加以下內(nèi)容映射端口映射地址你要轉(zhuǎn)發(fā)的地址做文件服務(wù)器你的服務(wù)器文件地址重啟

Nginx轉(zhuǎn)發(fā)

接著上篇文章說

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

添加以下內(nèi)容

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; # 你要轉(zhuǎn)發(fā)的地址
    add_header Access-Control-Allow-Origin *;
    }
}
Nginx做文件服務(wù)器
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/; # 你的服務(wù)器ftp文件地址
        add_header Access-Control-Allow-Origin *;
    }
}
重啟Nginx
/usr/local/nginx/sbin/nginx -s reload

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/39634.html

相關(guān)文章

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<