summaryrefslogtreecommitdiff
path: root/content/rss-bridge.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/rss-bridge.md')
-rw-r--r--content/rss-bridge.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/content/rss-bridge.md b/content/rss-bridge.md
index 8afc4bd..8c2a713 100644
--- a/content/rss-bridge.md
+++ b/content/rss-bridge.md
@@ -40,21 +40,24 @@ And add the following content:
```nginx
server {
+ listen 80;
+ listen [::]:80;
+
root /var/www/rss-bridge;
index index.php index.html index.htm index.nginx-debian.html;
- server_name rss-bridge.example.org;
+ server_name rss-bridge.thesiah.xyz;
location / {
- try_files $uri $uri/ =404;
+ try_files $uri $uri/ =404;
}
location ~ \.php$ {
- include snippets/fastcgi-php.conf;
- fastcgi_pass unix:/var/run/php/php-fpm.sock;
+ include snippets/fastcgi-php.conf;
+ fastcgi_pass unix:/var/run/php/php-fpm.sock;
}
location ~ /\.ht {
- deny all;
+ deny all;
}
}
```