windows环境

1.如何发布打包后文件夹

将打包生成好的文件复制到服务器上的发布路径上,则:发布完成,如下图:
如果是父工程发布,需要将dist文件夹下文件全部复制过来,子工程则是一个文件夹(例eventName)
QQ图片20200320174829.png

2.Nginx启动

以武汉开发环境为例(nginx安装路径为:D:\soft\nginx-New),如下图:
image.png

3.Nginx下配置

  1. http {
  2. #开启静态资源压缩
  3. gzip on;
  4. gzip_min_length 1k;
  5. gzip_buffers 4 16k;
  6. gzip_comp_level 2;
  7. gzip_types text/plain application/json application/javascript application/css text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
  8. gzip_vary off;
  9. gzip_disable "MSIE [1-6]\.";
  10. server {
  11. #端口
  12. listen 18000;
  13. location / {
  14. root D:/webMicro;
  15. try_files $uri /index.html;
  16. index index.html index.htm;
  17. }
  18. #禁止缓存HTML文件
  19. location ~ .*\.(html)$ {
  20. root D:/webMicro;
  21. add_header Cache-Control no-store;
  22. }
  23. }
  24. }

nginx.txt(附件后缀应为.conf,但是无法上传)