nginx安装以及使用入门

一、nginx安装推荐:https://segmentfault.com/a/1190000022415130

nginx使用入门使用:

推荐视频(大概二十分钟,短小精悍,快速掌握基本用法):https://www.bilibili.com/video/BV1Bx411Z7Do?from=search&seid=7978074833589139624

相关命令:

  • 启动nginx服务:
systemctl start nginx.service
service nginx start
  • 查看nginx的状态:
systemctl status nginx.service
service nginx status
  • 停止nginx服务:
systemctl restart nginx.service
service nginx restart
  • 重启nginx服务:
systemctl restart nginx.service
service nginx restart
  • 每次修改了配置文件nginx.conf,尽量重新加载:
sudo nginx -s reload
  • 可以使用命令查看某个端口是否被使用,比如80端口:
nc -zv localhost 80
编译nginx配置文件
vi /usr/local/nginx/conf/nginx.conf

常见用法(太懒了,直接把up主视频中的笔记搞过来):

①反向代理

nginx安装以及使用入门_第1张图片

②负载均衡

nginx安装以及使用入门_第2张图片

个人nginx配置(参考):

worker_processes  1;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;

	#负载均衡
		#①weight:权重
	upstream demo{
		server 127.0.0.1:8081 weight=10;
		server 127.0.0.1:8082 weight=1;
	}

    server {
        listen       80;
        server_name  localhost;
		
		#代理目标
		location / {
			proxy_pass http://demo/;
		}	
		
    }
}

配置后记得重启nginx:

systemctl restart nginx.service
service nginx restart

每次修改了配置文件nginx.conf,尽量重新加载:

nginx -s reload

你可能感兴趣的:(软件开发架构平台,nginx)