목록apache2 (4)
준호씨의 블로그
sudo apt-get remove apache2 sudo apt autoremove 오류발생 root@junho85:~# apt-get update Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease Temporary failure resolving 'security.ubuntu.com' Err:2 http://us.archive.ubuntu.com/ubuntu bionic InRelease Temporary failure resolving 'us.archive.ubuntu.com' Err:3 http://us.archive.ubuntu.com/ubuntu bionic-updates InRelease Temp..
php 버전을 검색 해 본다. brew search php php7 도 있긴 하던데 일단 무난한 5버전 중에서 가장 최신 버전으로 설치. 아파치 지원을 위해 --with-apache 옵션을 넣어준다. brew install php56 --with-apache multiple taps 어쩌고 에러 나는 경우. josegonzalez 가 tap 되어 있는 경우 untap 해 준다. brew untap josegonzalez/php brew tap homebrew/php 참고: https://github.com/Homebrew/homebrew-php/issues/1795 아무튼 php56 이 설치 되면 해당 버전이 잘 설치 되었음을 알 수 있다. $ php -version PHP 5.6.26 (cli) (bu..
설치 brew tap homebrew/apache brew install httpd24 or brew install homebrew/apache/httpd24 httpd22 도 있다. apache 2.2 잘 접속 된다. 기본포트는 8080이다. 정보 brew info httpd24 삭제 brew remove httpd22 설정파일이 있는 위치로 이동 $(brew --prefix)/etc/apache2/2.4 재시작 brew services restart httpd24 이상하게 tmux 내부에서는 실행이 안됨. 왜일까... 시작 brew services start httpd24 정지 brew services stop httpd24 로그 /usr/local/var/log/apache2 references h..
codeigniter 를 처음 사용 할 때 이상한 점은 index.php 가 계속 보인다는 것이다. 예를 들면 다음과 같다. http://labs.junho85.pe.kr/ci/index.php/punycode index.php 를 숨기고 다음과 같이 나타내면 좋을 텐데 말이다. http://labs.junho85.pe.kr/ci/punycode apache 설정 일단 apache 를 사용 한다면 rewrite_module 이 활성화 되어 있어야 됨. 다른 웹서버를 사용한다면 방법이 좀 달라질 수 있다. 개인적으로 로컬 개발환경에서 php 자체 웹서버를 사용하는 경우 별다른 설정이 필요 없없다. apache2 기준에서 mods-available 에 rewrite.load 파일 안에 로드 하는 내용이 있음..