mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-05 02:24:35 +02:00
[Core] github codespaces setup (#3287)
This commit is contained in:
parent
f7200756c3
commit
84e0135959
5 changed files with 105 additions and 0 deletions
17
.devcontainer/nginx.conf
Normal file
17
.devcontainer/nginx.conf
Normal file
|
@ -0,0 +1,17 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue