vi default-ssl.conf 에 다가 아래것 추가한다. brotli on; brotli_types text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/octet-stream; gzip on; gzip_t…
vi default.conf 편집 location /nginx_status { stub_status on; access_log off; allow 127.0.0.1; deny all; } http://site.com/nginx_status 결과 분석 Active connections: 1 # 활성화된 연결 개수 server accepts handled requests 72 72 518 # nginx 는 72개의 접속을 받아들였…
version 정보 nginx : 1.14.0 php : 7.1.18 yum install nginx 를 통해서 설치하였으며, # yum install nginx [root@centos html]# nginx -v nginx version: nginx/1.14.0 php71 은 remi repo를 추가해서 아래와 같이 설치했다. # yum --enablerep=remi-php71 install php-fpm php-common [root@centos html]# php -v PHP 7.1.18 (cli) (built: May …
[Nginx] 엔진엑스 기본 환경 설정
주의 사용자 계정에 실행 권한을 줘야지 403 에러 해결. chmod 755 /home/username 7. 디렉토리에 SELinux httpd 허용 설정 httpd_sys_content_t 타입을 설정해줘야 HTTP 웹서버가 접근 가능 $ chcon -Rt httpd_sys_content_t /home/some/public_html 파일 저장 디렉토리는 httpd_sys_rw_content_t 타입을 설정해줘야 HTTP 웹서버가 읽기 쓰기 가능 $ chcon -Rt httpd_sys_rw_content_t /home/som…
server { listen 80 default_server; listen [::]:80 default_server; root /var/www/html; # Add index.php to the list if you are using PHP index index.html index.php index.nginx-debian.html; server_name _; location ~* ^/~(.+?)(/.*\.php)$ { alias /home/$1/public_html$2; fastcgi_pass unix:/run/php…
Ubuntu 16.04 LTS 웹서버 세팅방법 (Nginx + PHP7-FPM + MariaDB) * Nginx 가 아닌 Apache 로 PHP 웹서버를 구축하시려면 https://blog.lael.be/post/73 글로 이동하세요. (쉽고 편함) * Ubuntu 에서 JSP 웹서버 세팅을 원하시면 https://blog.lael.be/post/858 글로 이동하세요. * Ubuntu 에서 PHP와 JSP를 동시 구동하고 싶으시면 https://blog.lael.be/post/1023 글로 이동하세요. * Ubuntu 가상…
nginx 설치법 yum install nginx service nginx start yum --enablerepo=remi install php-fpm service php-fpm start include /etc/nginx/conf.d/*.conf; vi /etc/nginx/conf.d/default.conf location ~ .php$ { root /etc/share/nginx/html; include fastcgi.conf; …