nginx tomcat redis mysql8安装和配置
tomcat安装
https://www.jb51.net/article/108760.htm
/software/tomcat
tomcat多个war包
https://blog.csdn.net/qq_28581175/article/details/124904731
springboot tomcat war包
https://blog.csdn.net/m0_60721514/article/details/125244084
mysql8安装
https://www.jb51.net/article/251117.htm
/software/mysql8031
redis安装
https://www.jb51.net/article/201405.htm
usr/local/redis
nginx安装
https://www.jb51.net/article/168489.htm
usr/local/nginx
nginx配置https
server { listen 8081 ssl; server_name xiwangxiaowu.wuxinzhe.top; ssl_certificate /usr/local/nginx/ssl/8724563_xiwangxiaowu.wuxinzhe.top.pem; ssl_certificate_key /usr/local/nginx/ssl/8724563_xiwangxiaowu.wuxinzhe.top.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; location / { root /usr/local/nginx/www/xiwangxiaowugzf/; index index.html index.htm; } } |