Skip to content

Instantly share code, notes, and snippets.

@geektheripper
Created April 8, 2021 06:38
Show Gist options
  • Save geektheripper/4fc46201691c0db537d1ec701189535a to your computer and use it in GitHub Desktop.
Save geektheripper/4fc46201691c0db537d1ec701189535a to your computer and use it in GitHub Desktop.
# /etc/nginx/conf.d/beyourminds.com.conf
server {
listen 80;
server_name beyourminds.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name beyourminds.com;
ssl_certificate /etc/nginx/1_beyourminds.com_bundle.crt;
ssl_certificate_key /etc/nginx/2_beyourminds.com.key;
root /usr/share/nginx/html;
location / {
index index.php index.html index.htm;
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
# /etc/nginx/nginx.conf
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
# tcp_nopush on;
client_max_body_size 10m;
keepalive_timeout 65;
gzip on;
include /etc/nginx/conf.d/*.conf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment