linux服务器nginx配置网站的http协议80端口或https协议443端口

一、配置80端口


server
{
    listen 80;
    server_name www.***.com;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/你的项目/你的项目的运行目录;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    error_page 404 https://www.***.com/404.html;
    #401 是访问目录没有权限时 设置跳转到任意界面,不让外人看到错误提示
    error_page 401 https://www.***.com/404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-73.conf;
    #PHP-INFO-END
    
  location / {  if (!-e $request_filename){  rewrite  ^(.*)$  /index.php?s=$1  last;   break;  }
}
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log /dev/null;
    }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log /dev/null; 
    }
    access_log  /www/wwwlogs/www.***.com.log;
    error_log  /www/wwwlogs/www.***.com.error.log;
}


二、https协议暂未补充: