同一台服务器可能需要部署多个程序,这里使用nginx解析php程序,反向代理tomcat java程序。可以实现动态解析域名,经过Nginx配置来动态解析Nginx/Html目录下的文件夹,做为二级域名。准备工作:需要提前装好nginx,...
同一台服务器可能需要部署多个程序,这里使用nginx解析php程序,反向代理tomcat java程序。可以实现动态解析域名,经过Nginx配置来动态解析Nginx/Html目录下的文件夹,做为二级域名。
准备工作:需要提前装好nginx,部署好程序,程序放在nginx/html目录下。
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
include /etc/nginx/conf.d/*.conf;
}
include /etc/nginx/conf.d/*.conf
1.动态解析,将根目录下的文件夹动态自动解析成二级域名
server {
listen 80;
server_name ~^(?<subdomain>.+).richwit.cn$ www.richwit.cn;
index index.html index.htm index.php;
root /usr/share/nginx/html/$subdomain/;
location ~ .php$ {
#fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#fastcgi_param SCRIPT_FILENAME documentrootdocumentrootfastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
}
location ~ .*\.(js|css)?$ {
expires 7d;
}
}
2.Java程序 tomcat部署,nginx反向代理
server {
listen 80;
server_name o2o.richwit.cn;
location / {
proxy_pass http://localhost:8088;
root o2o;
index index.html index.htm index.php;
}
}
根据解析的域名即可同时运行多个程序
沃梦达教程
本文标题为:使用Nginx配置来动态解析Nginx/Html目录下文件夹做为二级域名的前缀
基础教程推荐
猜你喜欢
- Ajax 向数据库修改和添加功能(较简答) 2023-02-01
- 基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽) 2023-02-01
- Ajax实现动态显示并操作表信息的方法 2023-02-23
- 利用promise及参数解构封装ajax请求的方法 2023-02-23
- 活到老学到老学习AJAX跨域(三) 2022-12-15
- ajax实现修改功能 2023-02-01
- ajax实现页面加载和内容删除 2023-01-31
- 一篇文章弄清楚Ajax请求的五个步骤 2023-02-24
- 【vue】class、style的用法 2023-10-08
- Ajax 框架之SSM整合框架实现ajax校验 2023-02-01