# hooc-module **Repository Path**: BlossomingFlowers/hooc-module ## Basic Information - **Project Name**: hooc-module - **Description**: 转成多模块项目1.1 在该仓库进行合作开发 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 环境: lombok:装插件 如何运行: 修改nginx下的nginx.conf,/hooc-user和/hooc-admin下的路径是views/hooc-user该文件夹在**自己电脑**里的绝对路径。浏览器输入localhost/hooc-user就ok。 【注意:server_name 是localhost,不是nginx.me】 server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } location /hooc { proxy_pass http://localhost:8080; } location /hooc-user { alias D:\Documents\Qianfeng\phase4\code\hooc-finally\hooc\views\hooc-user; index index.html index.htm; } location /hooc-admin { alias D:\Documents\Qianfeng\phase4\code\hooc-finally\hooc\views\hooc-admin; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }