サーバ

nginx を 1.24 から 1.28 にアップデート

手順
$ sudo nginx -v
nginx version: nginx/1.24.0 (Ubuntu)

Ubuntu24 の規定リポジトリでは安定版の Nginx が直接当たらないので、以下を参考にリポジトリを追加

nginx: Linux packages

アップデート

sudo apt-get update
sudo apt-get dist-upgrade

Nginx1.24 → 1.28 のアップデートでは、設定ファイルのパスが違うらしいので追加する

$ cat /etc/nginx/nginx.conf

user  nginx;
worker_processes  auto;

error_log  /var/log/nginx/error.log notice;
pid        /run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
+   include /etc/nginx/sites-enabled/*;
}
$ nginx -v
nginx version: nginx/1.28.0

コメント