first commit! 🎉

This commit is contained in:
ari melody 2023-10-02 06:30:54 +01:00
commit c927d9490e
Signed by: ari
GPG key ID: CF99829C92678188
10 changed files with 1229 additions and 0 deletions

20
nginx.conf Normal file
View file

@ -0,0 +1,20 @@
server {
listen 443 ssl;
server_name arimelody.me;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_certificate /etc/nginx/ssl/arimelody.crt;
ssl_certificate_key /etc/nginx/ssl/arimelody.key;
root /usr/share/nginx/arimelody/;
client_max_body_size 0;
location / {
}
if ($scheme != "https") {
return 301 https://$server_name$request_uri;
}
}