반응형
Ubuntu 18.04, 20.04에는 기본적으로 Apache2가 깔려있습니다.
이를 이용해서 80포트로 들어오는 기본적인 http요청을 받을 수 있는데요.
필요에의해 다른 주소로 redirect해야할 필요가 있습니다.
그럴땐 apache2의 기본 index파일인 /var/www/html/index.html 파일을 수정해서 redirect를 할 수 있습니다.
/var/www/html/index.html
<meta http-equiv="refresh" content="0; url=[YOUR_URL]">
위와 같이 <meta> tag를 이용하여 간단하게 구현할 수 있습니다.
위와 같이 설정했음에도 접속이 안되는 경우 apache2가 작동중인지 확인해보아야합니다.
$ sudo systemctl status apache2
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Drop-In: /lib/systemd/system/apache2.service.d
└─apache2-systemd.conf
Active: active (running) since Thu 2021-03-18 22:30:54 KST; 8min ago
Process: 18189 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)
Main PID: 18218 (apache2)
Tasks: 55 (limit: 4915)
CGroup: /system.slice/apache2.service
├─18218 /usr/sbin/apache2 -k start
├─18221 /usr/sbin/apache2 -k start
└─18222 /usr/sbin/apache2 -k start
3월 18 22:30:54 master1 systemd[1]: Starting The Apache HTTP Server...
3월 18 22:30:54 master1 systemd[1]: Started The Apache HTTP Server.
만약 Active: active (running) 이 아니라면 다음 명령어로 실행시켜 줍니다.
# systemctl start apache2
반응형
'개발 > Develop' 카테고리의 다른 글
021. VHS: CLI 명령을 GIF 데모영상으로 만들어주는 툴 (0) | 2022.11.01 |
---|---|
009. Heroku에 Sphinx Docs배포하기 (0) | 2021.08.18 |
008. PyArmor로 코드 난독화 하기 (0) | 2021.08.02 |
003. Ubuntu NetPlan으로 고정 IP 설정하기 (0) | 2021.02.16 |