MEMO FACTORY
Navigation

Recent Posts

Ubuntu 24.04 Server / Apache / Reverse Proxy 구축

가정 웹 서버 : 192.168.0.31 도메인 : https://abc.memofactory.net 프록시 서버 모듈 활성화 a2enmod proxy proxy_http headers conf 파일 <IfModule mod_ssl.c> <VirtualHost *:443> ServerName abc.memofactory.net ProxyRequests Off ProxyPreserveHost On ProxyPass / http://192.168.0.31:80/ ProxyPassReverse / http://192.168.0.31:80/ RequestHeader set X-Forwarded-Proto "https" RequestHeader set X-Forwarded-Port "443" ... </VirtualHost> </IfModule> 웹서버 conf 파일 <VirtualHost *:80> […]

윈도우 / MAC 주소 확인하는 방법

CMD 창을 연다. 다음과 같이 명령한다. ipconfig /all 물리적 주소가 MAC 주소이다. 물리적 주소 . . . . . . . . : 00-15-5D-00-0B-F1  

워드프레스 / 메모

사용자 정의 필드 사용자 정의 필드 전체 출력 the_meta() 특정 필드만 출력 get_post_meta( $post_id, $key, $single ) $post_id : 글의 아이디 $key : 사용자 정의 필드 이름 $single : true면 문자열로 반환하고, false 또는 설정하지 않으면 배열로 반환 echo get_post_meta( get_the_ID(), 'weather', true ); if ( get_post_meta( get_the_ID(), 'color', true […]

최근 글
  • Ubuntu 24.04 Server / Apache / Reverse Proxy 구축
  • 윈도우 / MAC 주소 확인하는 방법
  • 워드프레스 / 메모

Copyright © MEMO FACTORY All Rights Reserved.