Skip to content

Commit

Permalink
see if this works
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Jun 6, 2024
1 parent f88dac2 commit 2d3f4fd
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ features:
- title: 🏠 More than a Retrieval Augmentation System
details: Send your data over to vectorize and centralize for endless uses
- title: 💪 LLM + Prompting
details: Users can write clear instructions to use the power of Large Language Models
details: Users can write prompts to use the power of Large Language Models
---

57 changes: 57 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/docs.larallama.io/before/*;

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name docs.larallama.io;
server_tokens off;
root /home/forge/docs.larallama.io;

# FORGE SSL (DO NOT REMOVE!)
ssl_certificate /etc/nginx/ssl/docs.larallama.io/2214414/server.crt;
ssl_certificate_key /etc/nginx/ssl/docs.larallama.io/2214414/server.key;

ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers off;
ssl_dhparam /etc/nginx/dhparams.pem;

add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";

index index.html index.htm index.php;

charset utf-8;

# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/docs.larallama.io/server/*;

location / {
try_files $uri $uri/ /index.php?$query_string;
}

location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }

access_log off;
error_log /var/log/nginx/docs.larallama.io-error.log error;

error_page 404 /index.php;

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}

location ~ /\.(?!well-known).* {
deny all;
}
}

# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/docs.larallama.io/after/*;

0 comments on commit 2d3f4fd

Please sign in to comment.