blob: d1a3cb4d61fdb21c712c140c2cd2cb6962211db9 (
plain) (
tree)
|
|
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
|