«nginx» 태그된 질문

Nginx ( "eNgine x")는 경량의 고성능 HTTP 서버, 리버스 프록시, TCP 스트림 프록시 및 메일 프록시이며 BSD와 유사한 라이센스로 배포됩니다.


1
nginx-전역 오류 문서를 구성 할 수 있습니까?
전체 server {}블록으로 nginx 구성이 있습니다. 그들 사이에 오류 페이지를 공유하고 싶지만 많은 문서 루트가 있습니다. 나는 같은 구성을 사용할 수 있습니다 error_page 404 /404.html; error_page 500 502 503 504 /50x.html; 서버 블록 외부에서 공유되고 공유되지만 동일한 루트에 모든 문서를 넣거나 location = /404.html { root /srv/http/errors; } location = …
7 nginx 

1
간단한 PHP 앱을 제공하도록 nGinx를 어떻게 구성해야합니까 (라우팅 문제)?
작은 PHP 앱을 제공하도록 nGinx 서버 (Debian Wheezy 상자)를 구성하려고합니다. 라우팅에 문제가 있습니다. 내가 무엇이 필요 하나: /-PHP는 허용되지 않고 .html 파일 만 / api-/ api / method1, / api / method2 등 모든 것이 /api/index.php로 이동합니다. 그게 다야. 내가 지금 무엇을 : server { listen 3000; root /home/my_user/php/my_app; index …

1
Flask 앱의 루트 위치는 nginx 서버에서 403을 반환합니다
다른 게시물에 따르면 파일 권한이나 색인 지시문이 부족한 것이 원인입니다. 그러나 Flask 응용 프로그램에는 색인 파일이 전혀 없으며 대부분의 사이트가 매력처럼 작동합니다. nginx.conf server { listen 80; server_name localhost; charset utf-8; client_max_body_size 5M; root /srv/www/cc/app; location / { try_files $uri $uri/ @cc; } location /uploads/ { # root /srv/www/cc/app; expires …

2
간단한 nginx 다시 쓰기 규칙
이 기본 htaccess 규칙을 nginx 형식으로 다시 작성 (변환)해야합니다. 도와 줄래? 감사. RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^(.*)$ ./index.php?request=$1 그리고 이것은 내 전체 site.com nginx 구성입니다. server { listen 80; #listen [::]:80 default ipv6only=on; server_name www.domain.com domain.com; root /home/user/domains/domain.com/public_html; access_log /home/user/domains/domain.com/logs/access.log; error_log /home/user/domains/domain.com/logs/error.log; index index.php index.html …

1
Nginx 특정 재 작성 [닫힘]
나는 nginx rewrite에서 혼란스러워합니다. 할 수 있으면 도와주세요 .. 감사합니다 xxxx.conf #vhost-xxxxx server { listen 80; server_name xxxx.xxxx.com; root /var/www/html; index index.php index.html index.htm; charset utf-8; access_log logs/xxxxxx.access.log; } #rewrite if (!-e $request_filename) { rewrite ^(.+)$ /cn/index.php?q=$1 last; } location ~ \.php$ { root /var/www/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.