diff .nginx.conf @ 0:78edf6b517a0 draft

24.10
author Coffee CMS <info@coffee-cms.ru>
date Fri, 11 Oct 2024 22:40:23 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.nginx.conf	Fri Oct 11 22:40:23 2024 +0000
@@ -0,0 +1,24 @@
+# Минимальный конфигурационный файл для nginx
+# Больше опций https://coffee-cms.ru/nastroyka-nginx-dlya-coffee-cms
+server {
+    server_name nginx.coffee-cms.ru;
+    listen 80;
+    root /var/www/nginx.coffee-cms.ru/html;
+    location / {
+        index index.html /.cms/index.php;
+        # чтобы страницы не скачивались как файлы:
+        default_type text/html;
+        try_files $uri $uri/ /.cms/index.php?$query_string;
+    }
+    location ~ \.php(/|$) {
+        try_files $uri $uri/ /.cms/index.php?$query_string;
+        fastcgi_split_path_info ^(.+\.php)(/.+)$;
+        fastcgi_pass unix:/run/php/php7.3-fpm.sock;
+        fastcgi_buffering off;
+        fastcgi_request_buffering off;
+        fastcgi_index index.php;
+        include fastcgi.conf;
+        fastcgi_param PATH_INFO $fastcgi_path_info;
+        expires off;
+    }
+}
\ No newline at end of file