rss-bridge/config/nginx.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
371 B
Nginx Configuration File
Raw Normal View History

server {
listen 80 default_server;
2023-03-07 23:59:22 +01:00
listen [::]:80 default_server;
root /app;
access_log /dev/stdout;
error_log /dev/stderr;
index index.php;
location ~ /(\.|vendor|tests) {
deny all;
return 403; # Forbidden
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass 127.0.0.1:9000;
}
}