当前位置: 首页 > 工具软件 > ANMPP > 使用案例 >

修改anmpp默认网页路径

壤驷德宇
2023-12-01

找到文件

 

所需修改文件所在目录:/data/data/android.nginx/conf/

文件名:nginx.conf

修改内容

 

修改加粗斜体部分文字,然后保存即可

文件内容

 

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 default;

        server_name  localhost;

        autoindex            on;

        autoindex_exact_size on;        root    /data/data/android.wwwroot;        index   index.html index.htm index.php;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        #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$ {

            fastcgi_index  index.php;

            client_max_body_size 64m;

            fastcgi_pass   unix:/data/data/android.php-fpm/tmp/php-fpm.socket;

            fastcgi_param  SCRIPT_FILENAME  /data/data/android.wwwroot$fastcgi_script_name;

            include        fastcgi_params;

        }

        # deny access to .htaccess files, if Apache's document root

        # concurs with nginx's one

        #

        #location ~ /.ht {

        #    deny  all;

        #}

    }

修改后

 

修改后,重启下集成环境,或重启下手机

内存卡wwwroot目录:/mnt/sdcard/wwwroot

手机内存wwwroot目录:/mnt/sdcard2/wwwroot

 

此方法很适合手机ROM内存的机油

转自:http://jingyan.baidu.com/article/25648fc1a347ce9191fd00f6.html

转载于:https://www.cnblogs.com/luohaolqitfk/p/4367837.html

 类似资料: