RHEL8 nginx起動、再起動の使い方のメモ
環境
RHEl8.6
操作方法
1.サーバ設定ファイル
ls -ld/etc/nginx/conf.d/
2.メインの設定ファイル
ls -ld/etc/nginx/ ...
Windows10でnginx1.22サーバ起動、停止手順
環境
Windows 10 Home 64bit
nginx 1.22.0
操作方法
1.コマンドプロンプトを起動します。
「ここに入力して検索」タスクフォームにcmdと入力します。 ...
Windows10でnginx 1.22をインストールする方法
環境
Windows 10 Home 64bit
nginx 1.22.0
操作方法
1.下記サイトから最新atable版nginxをダウンロードします。
stable版の「ngi
「CentOS Stream 9」nginxサーバーのSSL/TLS暗号通信を有効する方法
環境
CentOS Stream release 9
1.nginxの配置ファイルを設定します
# vi/etc/nginx/conf.d/ssl.conf
以下の内容を編集します
Let’s Encrypt証明書「Problem binding to port 80: Could not bind to IPv4 or IPv6」の解決方法
環境
nginx 1.10.2
CentOS Linux release 7.9.2009 (Core)
Let’s Encrypt証明書
実行コマンド
# certbot certonly ...CentOS7にnginxをインストールする方法
1.リポジトリを追加する
#sudo vim/etc/yum.repos.d/nginx.repo
追加内容
name=nginx repo
baseurl=
gpgcheck=0
nginxのリバースプロキシ(proxy_pass)を設定する方法
設定メモ:
server {
listen 80;
server_name localhost;
charset utf8;
access_log/var/log/nginx_api/acces ...
「lua+nginx入門」lua-nginx-moduleの使い方
1.lua-nginx-moduleのダウンロード
#wget
#unzip master.zip
2.コンパイル
#./configure \
–user=nginx \ ...
Ubuntuにnginxをインストールするメモ
PGPキーを追加
wget -O – | sudo apt-key add –
リポジトリを追加
/etc/apt/sources.list.d/nginx.list
de ...
Linuxのnginxでdocument rootを設定する
修正ファイル:nginx.conf
修正前
location ~ \.php$ {
root html; //デフォルト/etc/nginx/html/
fastcgi_pass 127.0.0.1:9 ...
CentOS7.0にnginx1.7.4をインストールするメモ
1.g++、gcc、openssl-devel、pcre-develとzlib-develのインストール
$ yum install gcc-c++
$ yum install pcre pcre-devel
「nginx入門」httpsを設定する方法メモ
1.nginxのSSLモジュールをインストール
#./configure –prefix=/usr/local/nginx –with-http_stub_status_module –wi ...
nginxでSSL/HTTPS設定をするメモ
サンプルコード:
server {
listen 80;
listen 443 ssl spdy;
server_name www.domain.com;
ssl on;
ssl_c ...
centosにphp-fpm起動スクリプトを設定する方法
#vim etc/init.d/php-fpm
#!/bin/bash
#
# Startup script for the PHP-FPM server.
#
# chkconfig: 3 ...
Linuxにnginx起動スクリプトを設定するコード
サンプルコード
#!/bin/bash
#
# Startup script for Nginx – this script starts and stops the nginx daemon ...
「nginxサーバ」.htaccessファイルを設定するメモ
1.ファイル.htaccessの作成
# nginx rewrite rule
rewrite ^(.*?)/article/.*?-(d+)-(d+).html$ $1/display.html?id=$2& ...
nginxサーバの設定についてまとめ
サンプルコード
if (!-e $request_filename) {
proxy_pass
}
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ ...
「nginx」リダイレクトrewrite設定のメモ
設定内容
server {
listen 80;
server_name sample.com www.sample.com;
root/home/web;
if($host !~ “ ...