mysql 配置多个端口映射_nginx一个端口配置多个不同服务映射

upstream tomcat_server{

server 127.0.0.1:8087;

server 192.168.149.117:8088;

}

server {

listen 8088;

server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location /qdut/ {

# root html;

# index index.html index.htm;

proxy_set_header Host $http_host;

proxy_pass http://tomcat_server/qdut/;

proxy_set_header X-real-ip $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

location /gtg/ {

# root html;

# index index.html index.htm;

proxy_set_header Host $http_host;

proxy_pass http://127.0.0.1:8089/gtg/;

proxy_set_header X-real-ip $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ \.php$ {

# proxy_pass http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ \.php$ {

# root html;

# fastcgi_pass 127.0.0.1:9000;

# fastcgi_index index.php;

# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

# include fastcgi_params;

#}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /\.ht {

# deny all;

#}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是一个示例的 `docker-compose.yaml` 文件,用于安装 Nginx、Nacos 和 MySQL: ```yaml version: '3' services: nginx: image: nginx:latest ports: - "80:80" volumes: - ./nginx.conf:/etc/nginx/nginx.conf nacos: image: nacos/nacos-server:latest ports: - "8848:8848" environment: - PREFER_HOST_MODE=hostname - SPRING_DATASOURCE_PLATFORM=mysql - MYSQL_SERVICE_HOST=mysql - MYSQL_SERVICE_PORT=3306 - MYSQL_SERVICE_DB_NAME=nacos - MYSQL_SERVICE_USER=nacos - MYSQL_SERVICE_PASSWORD=nacos depends_on: - mysql mysql: image: mysql:latest ports: - "3306:3306" environment: - MYSQL_ROOT_PASSWORD=password - MYSQL_DATABASE=nacos - MYSQL_USER=nacos - MYSQL_PASSWORD=nacos ``` 该文件定义了三个服务Nginx、Nacos 和 MySQL。每个服务都有一个名称、一个镜像和一些配置选项。 Nginx 服务使用 `nginx:latest` 镜像,并将容器内的 80 端口映射到主机的 80 端口。此外,该服务使用了一个名为 `nginx.conf` 的配置文件,该文件必须与 `docker-compose.yaml` 文件位于同一目录下。 Nacos 服务使用 `nacos/nacos-server:latest` 镜像,并将容器内的 8848 端口映射到主机的 8848 端口。此外,该服务使用了一些环境变量来配置数据库连接信息,并依赖于 MySQL 服务MySQL 服务使用 `mysql:latest` 镜像,并将容器内的 3306 端口映射到主机的 3306 端口。此外,该服务使用了一些环境变量来配置数据库 root 用户的密码、数据库名称、用户名和密码。 你可以在同一目录下运行 `docker-compose up` 命令来启动这些服务。在服务启动后,你可以通过访问 `http://localhost:8848/nacos` 来访问 Nacos 控制台,并使用 MySQL 中的 `nacos` 数据库来保存配置信息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值