네트워크 드라이브에 있는 VS Project열기

보안 문제 때문에, 네트워크 드라이브를 통해서 비주얼 스튜디오 프로젝트 파일을 열면 DLL파일을 읽을 수 없다는 에러를 만난다. 해결 방법은 http://msdn.microsoft.com/en-us/library/dd409252.aspx 를 참고 하면 된다. 요약하자면, 요 내용이 아래 파일 안에 추가되어야 한다.…

0 Comments

[라라벨] 시작하기 CLI에서 설치

PHP와 컴포저를 설치한 후 컴포저의 create-project 명령어를 이용해 새 라라벨 프로젝트를 만들 수 있습니다. composer create-project laravel/laravel:^9.0 example-app 또는 컴포저를 통해 라라벨 인스톨러를 전역적으로 설치해서 라라벨 프로젝트를 만들 수도 있습니다. composer global…

0 Comments

[라라벨] nginx 설정

server { listen 80; listen [::]:80; server_name example.com; root /srv/example.com/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; index index.php; charset utf-8; location / { try_files $uri $uri/ /index.php?$query_string; } location =…

0 Comments

End of content

No more pages to load