일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 주식
- php
- Stock
- Stock ipo
- 제이쿼리
- 오라클
- 공모주 청약 일정
- 7월 공모주 청약 일정
- codeigniter
- 맥
- java
- JavaScript
- linux
- jquery
- 주식 청약 일정
- 6월 공모주 청약 일정
- 자바스크립트
- css
- 리눅스
- SQL
- 공모주 청약
- 공모주
- 자바
- 코드이그나이터
- html
- IPO
- Oracle
- 주식 청약
- Eclipse
- MYSQL
- Today
- Total
목록nginx (6)
개발자의 끄적끄적
[was/nginx] nginx 서버 버전정보 숨기는 방법 nginx 를 사용하여 웹 개발을 할때, 도메인으로 접속해서 크롬 개발자 도구 확인해보면 header에 서버 버전정보 들이 노출됩니다. 이런 사항들은 웹 공격에 사용된다고 하니 버전 정보는 숨기는게 좋습니다. 1. 우선 아래 경로의 설정 파일을 엽니다. /etc/nginx/nginx.conf 2. 설정파일의 내용중 아래와 같은 내용이 주석이 되어있다면, 해제하고, 없으면 추가로 작성합니다. http { server_tokens off; ... 3. nginx 서비스를 재시작 합니다. 4. 다시 도메인으로 접속하여 확인해봅니다. 위 방법대로 하면, 전체는 아니지만 어느정도 웹취약점 공격에 사전에 방어할 수 있다고 생각됩니다! 참고들 하세요!
[was/nginx] nginx 로드밸런싱 설정 예제 nginx 에서 로드밸런싱 즉 서버를 이중화해서 분배를 해야하는 경우가 생기면, 아래와 같이 sites-available 에 upstream 을 이용한 프록시 설정 파일을 생성하면 됩니다! upstream testserver { // 로드밸런싱명 (testserver) server localhost:8081; server localhost:8082; } server { listen 80; server_name example.com; location / { proxy_pass http://testserver; // upstream 에서 설정한 로드밸런싱 이름 } } 저도 이제 테스트 단계라서 설정 변경 및 테스트 후에 공유할 내용은 다시 공유하겠습니다!..
[php] nginx / codeigniter index.php 죽이기 설정 참고 URL 아래 링크를 통해서 index.php 죽이기 세팅을 간편하게 했다는 분들이 많아서 퍼왔습니다! 세팅에 도움들 되시길!! 링크 : www.farinspace.com/codeigniter-nginx-rewrite-rules/
[php] nginx index.php 제거 방법 nginx index.php 제거 방법 링크 입니다. 공식사이트에 나온 방법을 참고하여 작업하면 됩니다. 참고들하세요! 링크 : www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/ Codeigniter | NGINX Codeigniter A powerful PHP framework with a very small footprint. Recipe server { server_name domain.tld; root /var/www/codeignitor; index index.html index.php; # set expiration of assets to MAX for caching location..
[php/nginx] nginx codeigniter 설정 Nginx에서 CodeIgniter를 위한 nginx.conf 파일 설정 server { listen 80; # IPv4 server_name localhost; ## Parametrization using hostname of access and log filenames. access_log logs/localhost_access.log; error_log logs/localhost_error.log; ## Root and index files. root html; index index.php index.html index.htm; ## If no favicon exists return a 204 (no content error). locati..
[CentOs] nginx 설치하기 yum을 이용한 초간단 설치 sudo yum install nginx 설정파일위치 : /etc/nginx/nginx.conf 실행/정지 : sudo systemctl start nginx / sudo systemctl stop nginx html파일 위치 : /usr/share/nginx/html/ 로그파일 위치: /var/logs/nginx/ ... 출처 : https://cpdev.tistory.com/128?category=724738