検索条件
全2件
(1/1ページ)
Env | Ver |
---|---|
Windows | 10 pro |
PHP | 8.0.2 NTS Visual C++ 2019 x64 |
nginx | 1.19.8 |
nginx.conf
を開き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 C:/nginx/html/$fastcgi_script_name;
include fastcgi_params;
}
.php
ファイルを配置nginx
を起動php-cgi.exe -b 127.0.0.1:9000
.php
ファイルにアクセスecho -n 'username:password' | base64
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
を暗号化したIDPWに置き換えるlocation /foo/ {
# プロキシが使うHTTPヘッダ
proxy_set_header Authorization "Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
# プロキシするURL
proxy_pass https://example.com/;
}