Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'conf/nginx.conf')
-rw-r--r--conf/nginx.conf65
1 files changed, 63 insertions, 2 deletions
diff --git a/conf/nginx.conf b/conf/nginx.conf
index 783ea2e7d..4e3708b1e 100644
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -3,6 +3,9 @@
worker_processes 1;
#error_log logs/error.log;
+#error_log logs/error.log notice;
+#error_log logs/error.log info;
+
#pid logs/nginx.pid;
@@ -15,7 +18,14 @@ http {
include conf/mime.types;
default_type application/octet-stream;
+ #log_format main '$remote_addr - $remote_user [$time_gmt] $status '
+ # '"$request" $body_bytes_sent "$http_referer" '
+ # '"$http_user_agent" "http_x_forwarded_for"';
+
+ #access_log logs/access.log main;
+
sendfile on;
+ #tcp_nopush on;
#tcp_nodelay on;
#keepalive_timeout 0;
@@ -23,11 +33,12 @@ http {
#gzip on;
server {
- listen 80;
+ listen 80;
+ server_name localhost;
#charset koi8-r;
- #access_log logs/access.log;
+ #access_log logs/host.access.log main;
location / {
root html;
@@ -40,10 +51,60 @@ http {
# proxy_pass http://127.0.0.1;
#}
+ # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
+ #
+ #location ~ \.php$ {
+ # fastcgi_pass 127.0.0.1:9000;
+ # fastcgi_index index.php;
+ # fastcgi_param PATH_TRANSLATED /scripts$fastcgi_script_name;
+ # include conf/fastcgi_params;
+ #}
+
# deny access to .htaccess files
#
#location ~ /\.ht {
# deny all;
#}
+
+ #error_page 404 /404.html;
+ #error_page 500 502 503 504 /50x.html;
}
+
+
+ # another virtual host using mix of IP-, name-, and port-based configuration
+ #
+ #server {
+ # listen 8000;
+ # listen somename:8080;
+ # server_name somename alias another.alias;
+
+ # location / {
+ # root html;
+ # index index.html index.htm;
+ # }
+ #}
+
+
+ # HTTPS server
+ #
+ #server {
+ # listen 443;
+ # server_name localhost;
+
+ # ssl on;
+ # ssl_certificate cert.pem;
+ # ssl_certificate_key cert.key;
+
+ # ssl_session_timeout 5m;
+
+ # ssl_protocols SSLv2 SSLv3 TLSv1;
+ # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
+ # ssl_prefer_server_ciphers on;
+
+ # location / {
+ # root html;
+ # index index.html index.htm;
+ # }
+ #}
+
}