2025. 5. 8. 10:25

controllers/Topic.php

 

 

/views/topicget.php

 

 

 

2025. 2. 18. 01:08

SET apple red

 

GET apple

 

DEL apple


2025. 2. 17. 23:15

1. sudo apt update

2. sudo apt upgrade -y

3. sudo apt install redis-server

4. sudo service redis-server start

5. sudo service redis-server status

6. redis-cli

7. PING을 입력하면 PONG이 리턴

설치 및 실행 성공

2024. 12. 9. 11:18

1. 도메인 설정

2. nginx 설치 후 실행

3. certbot 설치

sudo apt install certbot python3-certbot-nginx

 

4. 인증서 발급

sudo certbot --nginx -d apple.com

 

5. 접속 확인

https://apple.com

 

Apple

Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, and expert device support.

www.apple.com

 

6. http에서 https로 redirection

server {

  listen 80;

  server_name apple.com;

  return 301 https://$host$request_uri;

}

 

7. 설정 후 nginx 재시작 및 테스트

 

sudo nginx -t

sudo systemctl restart nginx

2024. 11. 17. 16:49

sudo rm /etc/NetworkManager/system-connections/*

2024. 10. 10. 12:39

echo $PATH

2024. 9. 3. 15:46

eval "$(ssh-agent -s)"
ssh-add ~/.ssh/apple

 

해당 디렉토리에 새로 생성한 .ssh/apple 추가

 

여기서 apple 은 새로 생성한 apple.pub의 private key 파일

2024. 8. 26. 20:39

lsof -i 8000

2024. 8. 19. 15:17

sudo apt-get install python3-dev default-libmysqlclient-dev

build-essential pkg-config

 

위의 패키지들을 설치 후 다시 설치

2024. 8. 19. 14:02

2024. 7. 29. 20:20

brew --prefix openssl

 

rvm install 2.6.10 --with-openssl-dir=$(brew --prefix openssl)

2024. 7. 28. 14:03

Control + Command + Q

2024. 7. 27. 12:15

(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/leejaeman/.zprofile

 

eval "$(/opt/homebrew/bin/brew shellenv)"

 

 

위의 두 줄을 추가한다

2024. 7. 24. 09:02

sudo vim /etc/xdg/lxsession/LXDE-pi/autostart

2024. 7. 21. 15:17

hostname -I (대문자 아이)