? server {
? ? ? ? listen ? ? ? 443 ssl;
? ? ? ? #存放域名或者你服务的路径
? ? ? ? server_name localhost;
? ? ? ? #把证书放进conf目录下 然后就是对应着填写
? ? ? ? ssl_certificate xxxxxx.pem;
? ? ? ? ssl_certificate_key xxxxx.key;
? ? ? ? #access_log ?logs/host.access.log ?main;
? ? ? ? #后台管理静态资源存放
? ? ? location / {?
? ? ? ? ? #文件目录
? ? ? ? ? root ?html;
? ? ? ? ? #首页的样式
? ? ? ? ? index ?index.html;
? ? ? ? }
? ? ? location /prod-api {?
? ? ? ? #反向代理
? ? ? ? ? proxy_pass xxxx.xxxx.xxxx;
? ? ? ? }
? }
? server {
? ? ? ? listen ? ? ? 80;
? ? ? ?#域名
? ? ? ? server_name ?xxxx.xxx.com xxxx.com;
? ? #让所有访问80端口 http 的都跳转到443 也就是https
? ? ? ? return 301 https://$server_name$request_uri;
? ? ? ? root html;
? ? ? }