「備忘録」カテゴリーアーカイブ
ACアダプタをUSB化していく
デスク周りがごちゃごちゃしているので、ACアダプタ撲滅計画を実施中
USB急速充電器とUSB-DC変換ケーブルを使用してスリム化していく
DCプラグが特殊?規格なので、変換プラグも合わせて購入しました。
かなりスッキリした
電話親機 → 使わないので撤去
H06NU6 → 12V 0.5A, 12V 5.5mm/2.1mm – EIAJ#4
BL1500HM → 12V 2.5A, 12V 5.5mm/2.1mm – EIAJ#5
WX1500HP → 12V 1.5A, 12V 5.5mm/2.1mm – EIAJ#4
複数のphpを使い分ける
/nginx/xxxx/xxxx.conf
#PHP_setting
location ~ \.(php|html)$ {
fastcgi_pass unix:/run/php/php8.0-fpm.sock;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
}
/nginx/yyyy/yyyy.conf
#YYYY
location /YYYY{
alias /111/222/333;
index index.php index.html;
location ~ \.(php|html)$ {
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
}
}