新しいフォルダー

気になったことや勉強したことについて書いていきます

2015-08-01から1ヶ月間の記事一覧

nginxについての基礎知識

・変数 3.1.2 変数、値、文字列 ・色々参考になるサイト インフラエンジニアway - Powered by HEARTBEATS: nginxアーカイブ conf例 server{ listen 80 default; server_name localhost; access_log /var/log/nginx/admin_access.log; location / { root /var…

nginxのconf最小構成

server{ listen 80 default; server_name localhost; access_log /var/log/nginx/admin_access.log; location / { root /var/www; index index.html; }}