小新的笔记 人的活动如果没有梦想的鼓舞,就会变得空虚而渺小。——车尔尼雪夫斯基
博主 小新的笔记
粤ICP备2024299964号博主 2024年10月28日 在线自豪地使用 Typecho 建站搭配使用 🌻Sunny 主题当前在线 4 人
歌曲封面 未知作品

粤ICP备2024299964号

网站已运行 1 年 101 天 17 小时 50 分

Powered by Typecho & Sunny

5 online · 43 ms

Title

nginx 16.1 配置多站点

小新

·

·

418次阅读
Linux
Article
⚠️ 本文最后更新于2024年08月13日,已经过了473天没有更新,若内容或图片失效,请留言反馈

在nginx.conf中引入所有站点配置文件就行

♾️ text 代码:
include /usr/local/nginx/conf/site/*.conf;

站点配置文件是怎么样的?

♾️ text 代码:
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    
    location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        include        fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

server {
    listen       443 ssl;
    server_name  www.allenleung.site;

    ssl_certificate            /etc/nginx/ssl/fullchain.cer;
    ssl_certificate_key        /etc/nginx/ssl/allenleung.site.key;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;

    location / {
        root   html;
        index  index.html index.htm;
    }
}
现在已有 0 条评论,1 人点赞
huangzhongxin

广告

页底广告 页底广告
Comment:共0条
发表
搜 索 消 息 足 迹
你还不曾留言过..
你还不曾留下足迹..
博主 不再显示
博主