php-Laravel Forge Nginx Config for SSL

我通常不会发表问题,直到在互联网上对其进行研究直至死活为止.我使用Laravel Forge创建CSR,添加证书,将其激活,使用以下资源编辑Nginx Config:

https://stackoverflow.com/questions/26192839/laravel-forge-ssl-certificate-not-working

^ curl https://domain.com返回数据

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

server {
  listen 443 ssl;
  server_name example.com www.example.com;
  root /home/forge/example.com/public;

  # FORGE SSL (DO NOT REMOVE!)
  ssl_certificate /etc/nginx/ssl/vgport.com/3042/server.crt;
  ssl_certificate_key /etc/nginx/ssl/vgport.com/3042/server.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/default-error.log error;

  error_page 404 /index.php;

  location ~ \.php${
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
  }

  location ~ /\.ht {
      deny all;
  }
}

我在命令行中执行“服务nginx重新启动”,然后转到/var/log/nginx/error.log并看到以下错误:

'conflicting server name "" on 0.0.0.0:80,ignored'
'conflicting server name "www.domain.com" on 0.0.0.0:80,ignored'

当我访问domain.com时,它会通过“此网页具有重定向循环”重定向到https://domain.com.显然,Nginx重定向无法正常工作,但我已按照所有步骤进行操作.

请让我知道我应该发布哪些其他错误日志和信息来解决此问题.任何帮助将不胜感激,在此先感谢.

最佳答案
好吧,这个问题比我想的要简单.我正在使用不支持ssl的免费cloudflare dns指向.我改用namecheap dns,它开始工作.

相关文章

文章浏览阅读3.7k次,点赞2次,收藏5次。Nginx学习笔记一、N...
文章浏览阅读1.7w次,点赞14次,收藏61次。我们在使用容器的...
文章浏览阅读1.4k次。当用户在访问网站的过程中遇到404错误时...
文章浏览阅读2.7k次。docker 和 docker-compose 部署 nginx+...
文章浏览阅读1.3k次。5:再次启动nginx,可以正常启动,可以...
文章浏览阅读3.1w次,点赞105次,收藏182次。高性能:Nginx ...