From a0f296afa0e2cfab409d3d99303fd455bf0c6252 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Fri, 3 Jul 2026 00:57:40 +0300 Subject: [PATCH] Update README.md --- README.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/README.md b/README.md index fca2fd3..c14e255 100644 --- a/README.md +++ b/README.md @@ -94,3 +94,41 @@ Pair Drop -> pair.domain FressRSS -> rss.domain Only Office -> docs.domain Umami -> visitors.domain + + + +-Web App Ayarlari (index.html yerine index yazinca calismasi icin)- +sudo nano /etc/nginx/conf.d/domain.d/my_webapp.conf +index index.php index.html; --> index index.html index.htm; + + +index index.php index.html; --> index index.html index.htm; + +try_files $uri $uri/ /index.php?$args =404; --> try_files $uri $uri/ $uri.html =404; + +``` +location = /favicon.ico { + log_not_found off; + access_log off; +} + +location = /robots.txt { + allow all; + log_not_found off; + access_log off; +} + +location /maintenance/ { + deny all; +} + +location ~ ^/(.+/|)\.(?!well-known/) { + deny all; +} +``` + +Test +sudo nginx -t + +if its ok +sudo systemctl reload nginx or sudo systemctl restart nginx