Last active
August 17, 2021 08:36
-
-
Save apfelchips/e7d568e51aa776e2d5cf90c57abfb9eb to your computer and use it in GitHub Desktop.
generic nginx.conf template
This file contains 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
# src: https://git.io/J3aWK | |
# doc: https://docs.nginx.com/nginx/admin-guide/web-server/serving-static-content/ | |
# example: https://www.nginx.com/resources/wiki/start/topics/examples/full/#nginx-conf | |
# example: https://gist.github.com/terrywang/9612069 | |
user user staff; ## Default: nobody | |
worker_processes auto; ## Default: 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 2048; ## Default: 1024 | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; | |
index index.php index.html index.htm; | |
#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; | |
sendfile on; | |
#tcp_nopush on; | |
#keepalive_timeout 0; | |
keepalive_timeout 65; | |
#gzip on; | |
server { | |
listen 8080; | |
listen [::]:8080; | |
server_name localhost; | |
client_max_body_size 20M; root /Users/user/devel/; | |
location / { | |
autoindex on; | |
autoindex_exact_size off; | |
autoindex_format html; | |
autoindex_localtime on; | |
} | |
# location /BookedScheduler/ { | |
# rewrite ^/[^/]*/(.*) /BookedScheduler/Web/$1; | |
# } | |
location ~ \.php$ { | |
fastcgi_pass 127.0.0.1:9000; | |
fastcgi_index index.php; # goes on same line: | |
fastcgi_param SCRIPT_FILENAME /Users/user/devel/$fastcgi_script_name; | |
include fastcgi_params; | |
} | |
} | |
# 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 | |
# see: https://ssl-config.mozilla.org | |
# server { | |
# listen 8443 ssl http2; | |
# listen [::]:8443 ssl http2; | |
# server_name localhost; | |
# # ssl_certificate ./signed_cert_plus_intermediates; | |
# # ssl_certificate_key ./private_key; | |
# ssl_session_timeout 1d; | |
# ssl_session_cache shared:MozSSL:10m; # about 40000 sessions | |
# ssl_session_tickets off; | |
# # curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam | |
# # ssl_dhparam ./dhparam; | |
# # intermediate configuration | |
# ssl_protocols TLSv1.2 TLSv1.3; | |
# ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; | |
# ssl_prefer_server_ciphers off; | |
# # HSTS (ngx_http_headers_module is required) (63072000 seconds) | |
# # add_header Strict-Transport-Security "max-age=63072000" always; | |
# # OCSP stapling | |
# ssl_stapling on; | |
# ssl_stapling_verify on; | |
# # verify chain of trust of OCSP response using Root CA and Intermediate certs | |
# # ssl_trusted_certificate ./root_CA_cert_plus_intermediates; | |
# # replace with the IP address of your resolver | |
# resolver 127.0.0.1; | |
# location / { | |
# autoindex on; | |
# autoindex_exact_size off; | |
# autoindex_format html; | |
# autoindex_localtime on; | |
# } | |
# } | |
include servers/*; | |
} |
This file contains 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
#!/bin/bash | |
brew install [email protected] | |
brew link [email protected] | |
brew services start php | |
brew install composer | |
brew install nginx | |
curl "https://gist.githubusercontent.com/apfelchips/e7d568e51aa776e2d5cf90c57abfb9eb/raw/nginx.conf" -O "$(brew --prefix)/etc/nginx/nginx.conf" | |
brew services restart nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment