mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-29 06:38:51 +03:00
17 lines
No EOL
402 B
Nginx Configuration File
17 lines
No EOL
402 B
Nginx Configuration File
server {
|
|
listen 3100 default_server;
|
|
root /workspaces/rss-bridge;
|
|
access_log /var/log/nginx/rssbridge.access.log;
|
|
error_log /var/log/nginx/rssbridge.error.log;
|
|
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;
|
|
}
|
|
} |