전체 글
-
-
-
프로그래밍 수정중 특정 문자열이 포함된 파일들 검색서버 2020. 5. 22. 13:07
ex) grep -r 'shop_term_2' ./* 사용법 grep -r '검색어' ./*
-
vhost 세팅 80포트부터 443 ssl 포트까지서버 2020. 5. 5. 18:00
# REACT #server { # listen 80; # root "/opt/bitnami/apps/이름/www/"; # server_name abc.com www.abc.com; # # include "/opt/bitnami/apps/이름/conf/nginx-app.conf"; # location / { # # try_files $uri $uri/ /index.php?/$request_uri; # } #} server { listen 80; server_name abc.com www.abc.com; return 301 https://abc.com$request_uri; } # SSL server { listen 443; root "/opt/bitnami/apps/이름/www/"; server_name..