IDEA Tomcat 及Nginx的协作开发
- 在mac下开发java 少不了使用tomcat macos系统下的80端口是root权限才能使用 因此使用IDEA启动tomcat80端口时总会出现问题
解决方案 做端口转发 监听80端口 转发到8080(项目使用端口
1.第一种 参考 Mac上设置端口转发的方法
这种方法可以解决 但是每次开机启动都要设置(笔者没有写脚本去处理) 太麻烦 所以本人采用第二种
2.第二种 大名鼎鼎的nginx做80端口的转发
2.1 安装nginx 再次不叙述 网上教程很多
2.2使用nginx配置80端口转发
首先创建log文件
touch /usr/local/etc/nginx/log/localhost.tomcat_access.log; touch /usr/local/etc/nginx/log/localhost.tomcat_error.log;
nginx配置目录
/usr/local/etc/nginx/nginx.conf
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; upstream localhost{ server 127.0.0.1:8080; } server { listen 80; server_name localhost; access_log log/localhost.tomcat_access.log; error_log log/localhost.tomcat_error.log; #charset koi8-r; #access_log logs/host.access.log main; location / { #root jsp; index index.html index.htm index.jsp; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://localhost; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } include servers/*; }