0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Nginxのビルドコマンドメモ(Ubuntu20.04)

Posted at

ビルドに必要なもの

apt install -y build-essential libpcre3 libpcre3-dev

ビルド

オプション類は以下から必要なものを指定する
https://gakumon.tech/nginx/nginx_install_option.html

git clone https://github.com/nginx/nginx
cd nginx
./auto/configure --without-http_gzip_module --with-stream
make && make install

シンボリックリンク作成

ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/nginx
ln -s /usr/local/nginx/conf/nginx.conf /etc/nginx/nginx.conf
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?