一个项目部署的记录,主要记录知识点,不记录细节
前端
nginx、apache、tomcat
这里使用nginx
NGINX
安装
这里安装还是比较简单的(直接用包管理器安装)
ubantu
:使用
centos
:使用
配置
找到nginx配置文件nginx.config
配置前先备份一次sudo cp nginx.conf nginx.default.conf
配置解释
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
| ########### 每个指令必须有分号结束。################# ## #全局块配置nginx全局命令, #一般有运行nginx服务器的用户组,nginx进程pid存放路径,日志存放路径,配置文件引入,允许生成worker process数等。 ## user www-data;#配置用户或者组,默认为nobody nobody。 worker_processes auto;#允许生成的进程数,默认为1 pid /run/nginx.pid;#指定nginx进程运行文件存放地址
#制定日志路径,级别。 #这个设置可以放入全局块,http块,server块,级别以此为: #debug|info|notice|warn|error|crit|alert|emerg include /etc/nginx/modules-enabled/*.conf;
events { ## #配置影响nginx服务器或与用户的网络连接。 #有每个进程的最大连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个网路连接,开启多个网络连接序列化等。 ## worker_connections 768; #最大连接数,默认为512 # multi_accept on; #设置一个进程是否同时接受多个网络连接,默认为off }
http { ## #可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。 #如文件引入,mime-type定义,日志自定义,是否使用sendfile传输文件,连接超时时间,单连接请求数等。 ##
## # Basic Settings ##
sendfile on; #允许sendfile方式传输文件,默认为off,可以在http块,server块,location块。 tcp_nopush on; types_hash_max_size 2048; # server_tokens off;
# server_names_hash_bucket_size 64; # server_name_in_redirect off;
include /etc/nginx/mime.types; #文件扩展名与文件类型映射表 default_type application/octet-stream; #默认文件类型,默认为text/plain
## # SSL Settings ##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE ssl_prefer_server_ciphers on;
## # Logging Settings ##
access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log;
## # Gzip Settings ##
gzip on;
# gzip_vary on; # gzip_proxied any; # gzip_comp_level 6; # gzip_buffers 16 8k; # gzip_http_version 1.1; # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
server { ## #配置虚拟主机的相关参数,一个http中可以有多个server。 ##
# keepalive_requests 120; #单连接请求上限次数。 listen 80; #监听80端口 server_name localhost; #监听地址
location / { #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。 ## #配置请求的路由,以及各种页面的处理情况。 ## root html; #根目录 index index.html index.htm; #设置默认页 # proxy_pass http://mysvr; #请求转向mysvr 定义的服务器列表 # deny 127.0.0.1; #拒绝的ip # allow 172.18.5.54; #允许的ip }
}
## # Virtual Host Configs ##
include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; }
#mail { # # See sample authentication script at: # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript # # # auth_http localhost/auth.php; # # pop3_capabilities "TOP" "USER"; # # imap_capabilities "IMAP4rev1" "UIDPLUS"; # # server { # listen localhost:110; # protocol pop3; # proxy on; # } # # server { # listen localhost:143; # protocol imap; # proxy on; # } #}
|
操作:把server
块中的root(文件根目录)改为打包好的前端代码。
然后nginx -s reload
更改配置
踩坑
nginx -s reload
后没有生效?
解决办法:换了一个端口使用(这里换端口时也要设置用户名,用户要有对应的权限,一般为root)
nginx命令行基础使用
后端
这里用到了apache
nginx与Apache的对比以及优缺点
fastapi部署
pip install gunicorn
配置办法
使用宝塔Linux
被降维打击了
总而言之,部署成功了,就是没钱得用没钱的办法,后面找朋友把另一个端口开了。
docker
安装
制作镜像Dockfile(一般情况下,使用同类项目的Dockfile)
前端还需要一个nginx.conf文件