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

nginx配置访问apple-app-site-association

柯乐童
2023-12-01

在server配置如下location,访问地址http://127.0.0.1/apple-app-site-association

location /apple-app-site-association {
charset UTF-8; 
default_type text/html; 
return 200 '{\"applinks\":{\"apps\":[],\"details\":[{\"appID\":\"appID.com.xxxx\",\"paths\":[\"/app/*\",\"/\"]},{\"appID\":\"appID.com.xxxx\",\"paths\":[\"/app/*\",\"/\"]}]}}';
}

全部nginx配置


worker_processes  2;
 
 
events {
    worker_connections  8192;

}

 
http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        off;
 
    server_names_hash_bucket_size 128;

    client_body_timeout   10;
    client_header_timeout 10;
    keepalive_timeout     30;
    send_timeout          10;
    keepalive_requests    10;

    server {
        listen       80;
        server_name  localhost;
		
		location /apple-app-site-association {
			charset UTF-8; 
			default_type text/html; 
				return 200 '{\"applinks\":{\"apps\":[],\"details\":[{\"appID\":\"appID.com.xxxx\",\"paths\":[\"/app/*\",\"/\"]},{\"appID\":\"appID.com.xxxx\",\"paths\":[\"/app/*\",\"/\"]}]}}';
		}
 
        location /stat {
            rtmp_stat all;
            rtmp_stat_stylesheet stat.xsl;
        }
        location /stat.xsl {
            root nginx-rtmp-module/;
        }
        location /control {
            rtmp_control all;
        }
 

        location / {
            root   html;
            index  index.html index.htm;
        }
 

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
 
       
    }
 
    
 
}


 

 类似资料: