Animarr/nginx.conf

29 lines
628 B
Nginx Configuration File

#Place this under sites-available or so
server {
listen 8083 default_server;
listen [::]:8083 default_server;
#Change this to your Animarr folder path
root /opt/animarr/Animarr/web;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
}