From 4aebe716d82fa2200aa0acd58862104645a51ba1 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sun, 2 Apr 2023 11:50:47 -0400 Subject: [PATCH] Fix nginx conf --- d3vyce.conf | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/d3vyce.conf b/d3vyce.conf index 8ea3c2b..4f363bb 100644 --- a/d3vyce.conf +++ b/d3vyce.conf @@ -1,16 +1,11 @@ server { listen 80 default_server; - listen 443 ssl; - root /config/www; - index index.html index.htm index.php; + index index.html; server_name _; - ssl_certificate /config/keys/cert.crt; - ssl_certificate_key /config/keys/cert.key; - client_max_body_size 0; location / { @@ -20,12 +15,5 @@ server { try_files $uri $uri.html $uri/ =404; } - location ~ ^(.+\.php)(.*)$ { - fastcgi_split_path_info ^(.+\.php)(.*)$; - fastcgi_pass 127.0.0.1:9000; - fastcgi_index index.php; - include /etc/nginx/fastcgi_params; - } - error_page 404 /404-error.html; }