일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- address
- cross domain
- Apache
- Let's Encrypt
- MariaDB
- VirtualHost
- 환경개선부담금
- config.inc.php
- Widget
- vsftp
- nginx
- API
- centos
- httpd
- VPS
- Linux
- php7.2
- locale
- ko_KR.utf8
- SSL
- 가상호스트
- 크로스도메인
- 경유
- php
- Certbot
- Apach
- phpMyAdmin
- referrer
- geocode
- web
- Today
- Total
목록전체 글 (8)
Crispfeel
공홈 https://certbot.eff.org/에 접속해서 운영체제와 웹서버 종류를 선택하면 설명을 보실 수 있습니다. CentOS+Ngnix 기준으로 설명을 드리자면 우선 epel repository 가 설치되어 있어야 합니다. #yum install python2-certbot-nginx #certbot --nginx #certbot --nginx certonly 인증서 발급 #certbot certonly --standalone -d 도메인
공통으로 사용할 설정을 만들어 줍니다. - vi /etc/nginx/default.d/default.conf -- index index.php default.php index.html default.html; location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } client_max_body_size 20M; 가상호스트를 만들어 줍니다. - vi /etc/..
iframe을 특정 사이트에서만 보여주고 싶을때 보통 부모창의 URL을 가져오면 되지만 부모창의 도메인과 iframe소스 도메인이 다를경우는 불가능하기 때문에 referrer를 사용하시면 가능합니다. var parentUrl = document.referrer.split("/"); if(parentUrl[2] != "www.crispfeel.com"){ $("body").html("잘못된경로로 접속하셨습니다."); }; 간단하지만 효율적인 방법이죠?^^