전체 글(80)
-
윈도우즈 API 정복 VOLUME1 9-1 소코반 연습문제 풀어보기
https://github.com/PoKeumCho/Sokoban GitHub - PoKeumCho/Sokoban Contribute to PoKeumCho/Sokoban development by creating an account on GitHub. github.com 결과
2021.08.10 -
apache2 웹 서버 private directory 만들기
sudo nvim /etc/apache2/apache2.conf Options Indexes MultiViews FollowSymLinks AllowOverride None Order allow,deny Allow from 192.168.35.2 Deny from all Order 옵션을 보면 Deny가 뒤에 있다. 따라서 먼저 Deny 설정을 확인하므로 Deny from all 에서 걸리게 된다. Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Allow from 192.168.35.2 Deny from all Order 옵션을 보면 Allow가 뒤에 있다. 따라서 먼저 Allow 설정을 확인하므로 IP 192...
2021.08.09 -
apache2 웹 서버 Index of (파일구조) 숨기기
http://IP_Address/filename 로 접근했을때 나타나는 Index of /filename 형태의 페이지를 해제한다. sudo nvim /etc/apache2/apache2.conf sudo systemctl restart apache2 [ 참고 ] https://www.techrepublic.com/article/how-to-make-apache-more-secure-by-hiding-directory-folders/ How to make Apache more secure by hiding directory folders If you serve up your websites with Apache, you might want to prevent the server from listing s..
2021.08.09 -
linux(ubuntu) 파일 공유
/etc/apache2/sites-available/000-default.conf 파일을 보면 DocumentRoot /var/www/html 위와 같이 HTML이 시작될 루트 디렉터리가 적혀있다. 해당 디렉터리를 2명의 user(server, manager)가 공유하도록 한다. https://askubuntu.com/questions/873839/what-is-the-www-data-user What is the www-data user? I'm working through How To Serve Django Applications with uWSGI and Nginx on Ubuntu 16.04. At the end of the "Create a systemd Unit File for uWSGI" i..
2021.08.09 -
프롬프트 커스터마이즈 2021.08.09
-
참고
https://kithub.tistory.com/entry/MariaDB-%EC%99%B8%EB%B6%80%EC%A0%91%EC%86%8D-%EC%8B%9C%EB%8F%84%EC%8B%9C [ MariaDB ] 외부접속 문제 " Access denied for user " 외부에서 DB서버 접속시 접근을 거부 당하는 경우가 있다. 이는 해당 데이터베이스에서 접속 계정에 대한 권한을 설정해주지 않아서 생긴 문제이다. 그럼 이제 계정권한을 설정해보자. 1) mysql에 kithub.tistory.com
2021.08.09