From fce9209f5ada5793f67f265361bcdceb06c29d69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20=C5=A0ijanec?= Date: Fri, 1 Mar 2019 18:06:39 +0100 Subject: created nginx-server.conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit uporabi to konfiguracijo za nginx. Popraviti moraš še preskuse .htaccess datotek, saj jih v tem primeru ne rabiš. Prav tako ta server konfiguracija v php sock da samo datoteke, ki so v root directoryju strežnika, zato popravi include zahteve securimagea in vse securimage datoteke spravi v root directory. Skripto bom popravil kasneje... --- nginx-server.conf | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nginx-server.conf (limited to 'nginx-server.conf') diff --git a/nginx-server.conf b/nginx-server.conf new file mode 100644 index 0000000..d1a3cb4 --- /dev/null +++ b/nginx-server.conf @@ -0,0 +1,28 @@ +server { + listen 80; + listen [::]:80; + listen 443 ssl; + root /var/www/shortlink; + index index.html index.htm index.php index.nginx-debian.html; + server_name .domain.tld; # . na začetku domene, da dela tudi www. + ssl_certificate /path/to/crt; + ssl_certificate_key /path/to/key; + ssl_protocols SSLv2 SSLv3 TLSv1 TLSv1.1 TLSv1.2; + ssl_ciphers HIGH:!aNULL:!MD5; + location / { + try_files $uri $uri/ @rewrite; + } + location @rewrite { + rewrite ^/(.*)$ /index.php?r=$1 last; + } + location ~ \.php$ { + include snippets/fastcgi-php.conf; + fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; + } + location ~ /\.ht { + deny all; + } +} + +# NGINX DODATNE OPOMBE: +# V PHP SOCK bodo -- cgit v1.2.3