end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

install nginx-1.23 from source to rhel9

$ cat /etc/redhat-release 
Red Hat Enterprise Linux release 9.1 (Plow)

$ sudo yum install pcre-devel

$ curl -OL http://nginx.org/download/nginx-1.23.3.tar.gz

$ cd nginx-1.23.3
$ ./configure \
  --prefix=/home/end0tknr/local/nginx \
  --with-http_ssl_module
$ make
$ make install