赞
踩
框架:SpringBoot
安全框架:shiro
持久化框架:Jpa
数据库:MYSQL
设备:玩客云
java -jar netstorage-0.0.1-SNAPSHOT.jar --ip=192.168.1.121 --server.tomcat.basedir=/mnts1/HomeStorage/ --tempDir=/mnts1/HomeStorage/temp/
首先运行jar包 以上参数参考自己的硬盘和局域网情况和数据库情况 然后运行sql文件 然后把静态资源扔到nginx 设置反向代理,设置如下,浏览器输入http://{IP}/storage即可使用
server { listen 80; # 服务器名称 server_name localhost; proxy_connect_timeout 600; proxy_read_timeout 600; proxy_send_timeout 600; # 路径配置 location / { # vue打包的资源的位置 root /usr/local/dist; index index.html; try_files $uri $uri/ @router; } location @router { rewrite (static/.*)$ /$1 redirect; rewrite ^.*$ /index.html last; } location /api/ { # 反向代理 proxy_pass http://127.0.0.1:8020/; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。