前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >nginx搭建web服务器,配置端口复用

nginx搭建web服务器,配置端口复用

作者头像
Tacc
发布2022-01-11 14:54:33
2K0
发布2022-01-11 14:54:33
举报
文章被收录于专栏:Tacc

1、文件安装目录说明

代码语言:javascript
复制
Nginx安装目录为/usr/local/nginx
Nginx主配置文件目录为/usr/local/nginx/conf/nginx.conf
https密钥key存放目录/usr/local/nginx/sslkey/vhost*
网站存放目录/usr/local/nginx/WebServer
各网站主配置文件存放目录/usr/local/nginx/WebServer/vhost*.conf

2、Nginx主配置文件

代码语言:javascript
复制
worker_processes  1;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;                 #业务监听端口
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }
     include /usr/local/nginx/WebServer/*.conf;                 #外链加载的主Nginx的配置文件路径,需要指向到各个网站的配置文件上去
}

3、各网站主配置文件的解释

代码语言:javascript
复制
server {
     listen       80;
     server_name  www.secddi.com;       #此处为需要重写的URL地址
     rewrite ^(.*) https://$server_name$1 permanent;
}                                     #以上配置文件的意思为重写服务器的http 80端口至https 443端口
server {
	listen 443;
	server_name www.secddi.com;        #此处为https的URL地址
        index index.html;
        root /usr/local/nginx/WebServer/vhostA;        #此处为web网站的访问目录,主页路径
        ssl_certificate      /usr/local/nginx/sslkey/vhostA/full_chain.pem;        #此处为配置的https证书路径
        ssl_certificate_key  /usr/local/nginx/sslkey/vhostA/private.key;           #此处为配置的https证书路径
	ssl_session_cache    shared:SSL:1m;
	ssl_session_timeout  5m;
	server_tokens off;
	fastcgi_param   HTTPS               on;
	fastcgi_param   HTTP_SCHEME         https;
	access_log /usr/local/nginx/logs/httpsaccess.log;
}

4、配置nginx脚本

代码语言:javascript
复制
#!/bin/bash
#description: Ngnix Service
#chkconfig:2345 88 77 
#帮助函数
Usage (){
echo $"Usage:$0 {start|stop|restart}"
}

#启动函数
start(){

pid_file="/usr/local/nginx/logs/nginx.pid"
if [ -f $pid_file ];then
   echo "Ngnix Already Running, Do Not Run Again.。"
   exit 1
else
   echo "Ngnix Service Is Start Running..."
    /usr/local/nginx/sbin/./nginx
	/usr/local/nginx/sbin/./nginx -s reload
fi

}

#停止函数
stop(){
pid_file="/usr/local/nginx/logs/nginx.pid"
if [ -f $pid_file ];then
    echo "Ngnix coming to stop running"
	/usr/local/nginx/sbin/./nginx -s stop
else
   echo "Ngnix is not running..."
   exit 1

fi
}

#选择语句
case $1 in
	start )
	  start
	;;
	stop )
	  stop
	;;
	restart )
	  stop
            sleep 1
	  start
	;;	
	* )
	Usage
	;;
esac

5、将配置文件保存在/etc/init.d/nginx位置即可。之后即可通过下面的命令进行启动服务。

代码语言:javascript
复制
chmod +777 /etc/init.d/nginx 
/etc/init.d/nginx stop/start/restart
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021/04/04 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
SSL 证书
腾讯云 SSL 证书(SSL Certificates)为您提供 SSL 证书的申请、管理、部署等服务,为您提供一站式 HTTPS 解决方案。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档