Last active
August 29, 2015 14:20
-
-
Save patrickmaciel/3a870eb99754ff400671 to your computer and use it in GitHub Desktop.
nginx.conf with autoindex and *.conf includes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
#log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | |
# '$status $body_bytes_sent "$http_referer" ' | |
# '"$http_user_agent" "$http_x_forwarded_for"'; | |
#access_log logs/access.log main; | |
include sites-enabled/*.conf; | |
sendfile on; | |
client_max_body_size 100M; | |
client_body_buffer_size 128k; | |
#tcp_nopush on; | |
#keepalive_timeout 0; | |
keepalive_timeout 65; | |
tcp_nodelay on; | |
#gzip on; | |
server { | |
listen 80; ## listen for ipv4; this line is default and implied | |
listen [::]:80 default_server ipv6only=on; ## listen for ipv6 | |
# listen 80; | |
server_name localhost; | |
#charset koi8-r; | |
#access_log logs/host.access.log main; | |
root /var/www; | |
location / { | |
root /var/www; | |
index index.html index.htm index.php; | |
autoindex on; | |
} | |
#error_page 404 /404.html; | |
# redirect server error pages to the static page /50x.html | |
# | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { | |
root html; | |
} | |
# proxy the PHP scripts to Apache listening on 127.0.0.1:80 | |
# | |
#location ~ \.php$ { | |
# proxy_pass http://127.0.0.1; | |
#} | |
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 | |
# | |
location ~ \.php$ { | |
# root html; | |
fastcgi_pass 127.0.0.1:9000; | |
fastcgi_index index.php; | |
fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name; | |
include fastcgi_params; | |
} | |
#location ~ \.php$ { | |
# try_files $uri =404; | |
# fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini | |
# | |
# # With php5-cgi alone: | |
# #fastcgi_pass 127.0.0.1:9000; | |
# # With php5-fpm: | |
# # fastcgi_pass 127.0.0.1:9000; | |
# fastcgi_index index.php; | |
# include fastcgi_params; | |
#} | |
# deny access to .htaccess files, if Apache's document root | |
# concurs with nginx's one | |
# | |
location ~ /\.ht { | |
deny all; | |
} | |
} | |
# 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 ssl; | |
# server_name localhost; | |
# ssl_certificate cert.pem; | |
# ssl_certificate_key cert.key; | |
# ssl_session_cache shared:SSL:1m; | |
# ssl_session_timeout 5m; | |
# ssl_ciphers HIGH:!aNULL:!MD5; | |
# ssl_prefer_server_ciphers on; | |
# location / { | |
# root html; | |
# index index.html index.htm; | |
# } | |
#} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name www.project.build project.build; | |
access_log /var/www/projects/customer-name/logs/access.log; | |
error_log /var/www/projects/customer-name/logs/error.log; | |
root /var/www/projects/customer-name/project/public; | |
client_max_body_size 100m; | |
location / { | |
sendfile on; | |
client_max_body_size 200m; | |
try_files $uri $uri/ /index.php$is_args$args; | |
index index.html index.htm index.php; | |
} | |
location ~ \.php$ { | |
include /usr/local/etc/nginx/fastcgi_params; | |
try_files $uri /index.php =404; | |
fastcgi_index index.php; | |
fastcgi_pass 127.0.0.1:9000; | |
fastcgi_param SCRIPT_FILENAME /var/www/projects/customer-name/project/public$fastcgi_script_name; | |
fastcgi_param debug true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment