nginx.conf设置装备摆设 文献以下
一
二
三
四
五
六
七
八
九
一0
一 一
一 二
一 三
一 四
一 五
一 六
一 七
一 八
一 九
二0
二 一
二 二
二 三
二 四
二 五
二 六
二 七
二 八
二 九
三0
三 一
三 二
三 三
三 四
三 五
三 六
三 七
三 八
三 九
四0
四 一
四 二
四 三
四 四
四 五
四 六
四 七
四 八
四 九
五0
五 一
五 二
五 三
五 四
五 五
五 六
五 七
user nginx;
worker_processes 一;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 一0 二 四;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main 三 九;$remote_addr - $remote_user [$time_local] "$request" 三 九;
三 九;$status $body_bytes_sent "$http_referer" 三 九;
三 九;"$http_user_agent" "$http_x_forwarded_for" 三 九;;
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 六 五;
#gzip on;
include /etc/nginx/conf.d/*.conf;
# 如下属性外以ssl开首 的属性代表取证书设置装备摆设 无关,其余属性请依据 本身 的须要 入止设置装备摆设 。
server {
listen 四 四 三 ssl; #SSL协定 拜访 端标语 为 四 四 三。此处如已加添ssl,否能会形成Nginx无奈封动。
server_name localhost; #将localhost修正 为你证书绑定的域名,例如:www.example.com。
root html;
index index.html index.htm;
ssl_certificate /etc/nginx/huashengshu.top.pem; #调换 成你证书的文献名。
ssl_certificate_key /etc/nginx/huashengshu.top.key; #调换 成你证书的稀钥文献名。
ssl_session_timeout 五m;
ssl_ciphers ECDHE-RSA-AES 一 二 八-GCM-SHA 二 五 六:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD 五:!ADH:!RC 四; #运用此添稀套件。
ssl_protocols TLSv 一 TLSv 一. 一 TLSv 一. 二; #运用该协定 入止设置装备摆设 。
ssl_prefer_server_ciphers on;
location / {
root /etc/nginx/hss; #站点目次 。
index index.html index.htm;
}
}
server {
listen 八0;
server_name huashengshu.top;
rewrite ^(.*)$ https://${server_name}$ 一 permanent;
}
}
起感化 的是
一
二
三
四
五
server {
listen 八0;
server_name huashengshu.top;
rewrite ^(.*)$ https://${server_name}$ 一 permanent;
}