传奇猫  --    ≧◠‿●‿◠≦   --  做一个安静的传奇平台

全部分类
全部分类

配置Ngnix服务器支持manifest


摘要:本文主要讲述由于开发中需要使用Ngnix服务器,这里我以Ngnix服务器配置为例。说明如何进行服务器的配置,使其支持HTML5  支持manifest文件


text/cache-manifestmf manifest;




image.png



修改网站端口 和 网站根目录



    server {

        listen       88;

        server_name  localhost;


        #charset koi8-r;


        #access_log  logs/host.access.log  main;

        root    "D:/WWW";

        location / {

            index  index.html index.htm index.php l.php;

           autoindex  off;

        }


        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }


        location ~ \.php(.*)$  {

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            fastcgi_param  PATH_INFO  $fastcgi_path_info;

            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;

            include        fastcgi_params;

        }


    }

image.png


下一篇: 没有符合条件的博文
展开 收缩

在线客服

微信客服

微信扫码咨询

用户中心
我的足迹
我的收藏
0 种商品 共计: ¥0.00

您的购物车还是空的,您可以

  • 微信公众号

    微信公众号
返回顶部