Add full project files

This commit is contained in:
root
2026-07-04 19:24:56 +03:30
parent d54f5441a3
commit b245e7b71a
835 changed files with 30149 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# پنل ادمین — panel.modstagram.com
# مسیر: /etc/nginx/sites-available/panel.modstagram.com
# قبل از فعال‌سازی: npm run build در modstagram_panel
server {
listen 80;
server_name panel.modstagram.com;
root /root/modstagram_panel/build;
index index.html;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 30d;
add_header Cache-Control "public, immutable";
}
}