gpt4 book ai didi

ssl - 这个服务器 block 应该如何寻找成功的 nginx ssl 安装?

转载 作者:太空宇宙 更新时间:2023-11-03 15:10:35 24 4
gpt4 key购买 nike

所以我正在审查这个服务器 block 配置,老实说,它看起来不像我希望的样板,我需要成功安装 ssl。

文件是/etc/nginx/sites-available/example.com:

server {
listen 80;
server_name example.com;
root /home/forge/example.com/public;

# FORGE SSL (DO NOT REMOVE!)
# ssl on;
# ssl_certificate;
# ssl_certificate_key;

index index.html index.htm index.php;

charset utf-8;

location / {
try_files $uri $uri/ /index.php?$query_string;
}

location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }

access_log off;
error_log /var/log/nginx/biossantibodies.com-error.log error;

error_page 404 /index.php;

location ~ \.php$ {
try_files $uri /404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;
include fastcgi_params;
}

然后在/etc/nginx/sites-available/www.example.com 中还有另一个文件:

server {
listen 80;
listen 443 ssl;
server_name www.example.com;
return 301 $scheme://example.com$request_uri;
}

所以我什至不确定我应该在哪一个中工作。

最佳答案

下面有一个很好的例子,说明您需要为 NGINX 配置 ssl。

http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate

关于ssl - 这个服务器 block 应该如何寻找成功的 nginx ssl 安装?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41604095/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com