update folders

This commit is contained in:
2023-08-05 22:45:06 +03:00
parent c0aaec4c08
commit c2ef252c14
136 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# nginx
- [`redirect`](redirect)

View File

@ -0,0 +1,24 @@
server {
listen 80;
server_name SITE_URL;
location /robots.txt {
root FOLDER;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl;
server_name SITE_URL;
ssl_certificate PATH_TO_PEM;
ssl_certificate_key PATH_TO_PEM;
root FOLDER;
}