feat: add Review Management module and UI layout fixes

This commit is contained in:
2026-03-07 11:55:18 +05:30
commit 1da66c1be5
226 changed files with 39160 additions and 0 deletions

27
nginx_admin_config Normal file
View File

@@ -0,0 +1,27 @@
server {
server_name admin.prototype.eventifyplus.com;
root /var/www/admin.prototype.eventifyplus.com;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/admin.prototype.eventifyplus.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/admin.prototype.eventifyplus.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = admin.prototype.eventifyplus.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
server_name admin.prototype.eventifyplus.com;
return 404; # managed by Certbot
}