uni-app尝试

1、用uni-app做一个web网站,调测完成后 点发行,选择H5


image.png

2、弹出窗口,填写相关内容后,点击发行。


image.png

3、等待2-3分钟,控制台会显示


image.png

4、把生成的静态文件上传的服务器。
5、服务器安装nginx,要提前做好配置,生成的静态文件相对目录有要求,看一下index.html中的相对路径就可以了。
6、我的网址用python做后台服务,用nginx的反向代理做配置即可,后台服务的端口为5000.
配置如下:

server {
    listen 80 default_server;
    listen [::]:80 default_server;
    root /web/eggtool;
    index index.html index.htm index.nginx-debian.html;
    server_name _;

    location / {
        try_files $uri $uri/ =404;
    }
    location ^~/convert{
        proxy_pass http://127.0.0.1:5000/convert;
    }

配置的时候发现一个坑,/convert/ 跟 /convert 解析的时候是不同的,要注意,卡了至少1个多小时。

你可能感兴趣的:(uni-app尝试)