webAssembly相关介绍与nginx相关配置

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_31214097/article/details/84521843

webAssembly知识点

是一种新的字节码格式,主流浏览器都已经支持,和JS需要解释执行不同的是

webAssembly字节码和底层机器码一样可快速的装载运行,不是一门编程语言,而是一份字节码标准,需要用高级语言编译出字节码放到webassembly虚拟机中去运行。具体如下

https://www.ibm.com/developerworks/cn/web/wa-lo-webassembly-status-and-reality/index.html

nginx相关配置

nginx配置文件描述

server {

listen 8100;

server_name localhost;

#charset koi8-r;

#access_log /var/log/nginx/log/host.access.log main;

location / {

root /root/ckq/dist;

index index.html;

autoindex on;

try_files $uri $uri/ /index.html;

}

}

包含在http中

猜你喜欢

转载自blog.csdn.net/qq_31214097/article/details/84521843