servnest-mkosi/mkosi.extra/etc/nginx/sites/sftpgo-auth.conf

15 lines
252 B
Plaintext
Raw Normal View History

server {
listen [::1]:8055;
2022-06-23 19:50:50 +02:00
root /srv/niver/core;
include inc/errors.conf;
location / {
2022-06-23 19:50:50 +02:00
try_files /sftpgo-auth.php =500;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php-fpm/niver.sock;
include inc/fastcgi.conf;
}
}