Tomcat9 目录结构

tomcat本身的lib目录都有哪些jar包链接

Tomcat 中 catalina.out、catalina.log、localhost.log 和 access_log 的区别

Jboss

ExplodedDeployment: 把war exploded文件夹加后缀名.war(或解压war包并加后缀名.war),deployment选这个文件夹。

nginx

Ubuntu下Nginx安装
Nginx部署Vue(ubuntu环境下)
所有的配置文件都在/etc/nginx下,虚拟主机目录/var/www/html
image.png

  1. service nginx start
  2. service nginx stop
  1. location /test {
  2. alias /home/marhoo_ubuntu2/www;
  3. try_files $uri $uri/ /index.html;
  4. #这句配置的意思就是,拿到一个地址,先根据地址尝试找对应文件,找不到再试探地址对应的文件夹,再找不到就返回/test/index.html
  5. }

windows

nginx for Windows

  1. nginx -s stop fast shutdown
  2. nginx -s quit graceful shutdown
  3. nginx -s reload changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes
  4. nginx -s reopen re-opening log files

server { listen 80; server_name localhost; # 相对于安装目录 location / { # root html; root www; index index.html index.htm; try_files $uri $uri/ /index.html; #目录不存在则执行index.html }