728x90 반응형 nginx2 Nginx에 php, nodejs 같이 쓰기 구성 : nginx php7.2-fpm nodejs vim /etc/nginx/sites-available/default server { listen 80 default_server; listen [::]:80 default_server; root /var/www/html; index index.html index.htm index.nginx-debian.html index.php; server_name site; location / { proxy_pass http://127.0.0.1:8080; } # pass PHP scripts to FastCGI server location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/.. 2021. 5. 17. [Nginx] www, 서브도메인, http 를 메인 도메인으로 Redirect * 파일을 나누지않고 한 파일(default)에서 작업했음 * http://도메인 접근, www도메인 접근, 서브도메인 접근시 메인도메인으로 Redirect 예시임 vim /etc/nginx/sites-available/default Main Domain ( listen 443 port ) server { root /RootD; index index.html index.htm index.nginx-debian.html index.php; /* Main Domain */ server_name MainDomain; location / { try_files $uri $uri/ =404; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass.. 2021. 5. 10. 이전 1 다음 728x90 반응형