阿里云ecs服务器,nginx多域名多项目部署教程,含本地部署教程

nginx多域名部署项目

  • 本地部署
  • 线上部署

一、本地部署

  • 第一步:

win+r 输入drivers



打开hosts文件,编辑

加行

127.0.0.1 自定义域名

...

  • 第二步:

下载 nginx

安装好以后

打开ngin安装目录,选择nginx.conf

打开

yaml 复制代码
#user  Administrator;
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 {
    client_max_body_size 1024m;
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    keepalive_timeout  65;
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 16 64K;
    gzip_http_version 1.1;
    gzip_comp_level 5;
    gzip_types text/plain application/x-javascript text/css application/xml application/javascript;
    gzip_vary on;
    gzip_disable "MSIE [1-6]\.";
    
server {
        listen       80;
        server_name  host中配置的自定义域名;
	gzip_static on;
        charset utf-8;
	client_max_body_size 1024m;
 
        location / {
            root   填写你的前端代码目录;#例如:C:\dist
            try_files $uri $uri/ /index.html;
            index  index.html index.htm;
        }
        location /prod-api/ {
            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header REMOTE-HOST $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass 后端域名地址 注意:加端口号;
        }
 
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   填写你的前端代码目录;#例如:C:\dist
        }
    }

server {
        listen       80;
        server_name  host中配置的其他自定义域名;
	gzip_static on;
        charset utf-8;
	client_max_body_size 1024m;
	#配置前端地址
        location / {
            root   其他前端项目目录地址;
            try_files $uri $uri/ /index.html;
            index  index.html index.htm;
        }
        #配置后端接口
        location /prod-api/ {
            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header REMOTE-HOST $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass 其他项目后端地址;
        }
 
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   其他前端项目目录地址;
        }
    }


}
yaml 复制代码
nginx常用命令:
start niginx //启动命令
nginx -s stop  //终止nginx
nginx -s reload //重启

二、线上部署

1、以阿里云ecs服务器、域名为例

第一步:先在阿里云后台配置好二级域名

第二步:如"本地部署"。只是将前后端目录地址换成服务器上实际的目录地址,域名地址换成阿里云的,就可以了。

相关推荐
曼城周杰伦19 分钟前
自然语言处理:第六十三章 阿里Qwen2 & 2.5系列
人工智能·阿里云·语言模型·自然语言处理·chatgpt·nlp·gpt-3
学Linux的语莫29 分钟前
Ansible使用简介和基础使用
linux·运维·服务器·nginx·云计算·ansible
Onlooker12939 分钟前
云服务器部署WebSocket项目
服务器
学Linux的语莫1 小时前
搭建服务器VPN,Linux客户端连接WireGuard,Windows客户端连接WireGuard
linux·运维·服务器
legend_jz1 小时前
【Linux】线程控制
linux·服务器·开发语言·c++·笔记·学习·学习方法
黑牛先生1 小时前
【Linux】进程-PCB
linux·运维·服务器
Karoku0661 小时前
【企业级分布式系统】ELK优化
运维·服务器·数据库·elk·elasticsearch
安迁岚2 小时前
【SQL Server】华中农业大学空间数据库实验报告 实验三 数据操作
运维·服务器·数据库·sql·mysql
vmlogin虚拟多登浏览器3 小时前
虚拟浏览器可以应对哪些浏览器安全威胁?
服务器·网络·安全·跨境电商·防关联
追风赶月、3 小时前
【Linux】线程概念与线程控制
linux·运维·服务器