• 새로운 소식이 있나요?
  • 이미지
    2017-05-30
    apache 설정 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^.]+)$ $1.php [L] nginx 설정 try_files $uri $uri/ $uri.php?$args;
  • 이미지
    2017-05-30
    스레드가 잠겼습니다.
  • 이미지
    2017-10-15
    This article describes the basic configuration of a proxy server. You will learn how to pass a request from NGINX to proxied servers over different protocols, modify client request headers that are sent to the proxied server, and configure buffering of responses coming from the proxied servers.Table 더보기
  • 이미지
    2017-10-15
    스레드가 잠겼습니다.
  • 이미지
    2017-10-23
    https://extrememanual.net/10140
  • 이미지
    2017-10-23
    http://www.monitorix.org/screenshots.htmlhttp://munin-monitoring.org/실시간 Nginx 액세스 로그 보는 방법# tail -f /var/log/nginx/access.log 
  • 이미지
    2017-10-28
    http://mydoc.digimoon.net/board/skin/ggambo7002_board/print.php?id=board&no=228
  • 이미지
    2017-11-01
    Certbot 설치https://www.google.co.kr/search?ei=spn4We7_Msmt0AT_tIBY&q=certbot+%EC%84%A4%EC%B9%98&oq=certbot+%EC%84%A4%EC%B9%98&gs_l=psy-ab.3..0.2186.3057.0.3229.4.4.0.0.0.0.121.447.0j4.4.0....0...1.1.64.psy-ab..0.2.232....0.DpDIojobllIlet’s Encrypt SSL 무료 인증서 certbot을 통해 설치 및 설정법http 더보기
  • 이미지
    2017-11-02
    스레드가 잠겼습니다.
  • 이미지
    2017-11-08
    스레드가 잠겼습니다.
  • 이미지
    2018-04-21
    server { listen 80; server_name eond.com www.eond.com; rewrite ^/(.*) https://eond.com/$1 permanent; } server { listen 443 ssl http2; server_name www.eond.com; ssl_certificate /etc/letsencrypt/live/eond.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/eond.com 더보기
  • 이미지
    2018-04-25
    Nginx 설정인덱스 페이지 + PHP 작업if($_SERVER['HTTPS']!=='on'){ header('Location: https://'.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']); }https가 아닐 경우 https로 리다이렉트하는 방법