server { listen 80; listen [::]:80; listen 443 ssl http2; listen [::]:443 ssl http2; 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 TLSv1.3; 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; } } # preberi se prejšnji commit opis za dodatne informacije