feat: add Azure AKS deployment infrastructure with Terraform
Build and Deploy to Synology NAS / test (push) Failing after 15m0s
Build and Deploy to Synology NAS / build (push) Has been cancelled
Build and Deploy to Synology NAS / deploy (push) Has been cancelled
Build and Deploy to Synology NAS / notify (push) Has been cancelled
Build and Deploy to Synology NAS / test (push) Failing after 15m0s
Build and Deploy to Synology NAS / build (push) Has been cancelled
Build and Deploy to Synology NAS / deploy (push) Has been cancelled
Build and Deploy to Synology NAS / notify (push) Has been cancelled
- Add Terraform configuration for AKS cluster deployment - Add Kubernetes manifests for Laravel app (deployment, services, secrets) - Add PostgreSQL on Kubernetes with multi-schema support - Add Nginx Ingress Controller configuration - Add GitHub Actions workflow for Azure deployment - Add HTTP Basic Authentication for production - Add database restore functionality via Kubernetes jobs - Update Dockerfile and nginx config for production - Update database.php for multi-schema connections - Add deployment documentation and quickstart guides Deployed version: 1.0.7 at http://72.144.113.194/ Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1 @@
|
||||
afc-user:$apr1$ti1kco0/$Bp395rESObPoH539Kecvc0
|
||||
@@ -13,6 +13,11 @@ server {
|
||||
# -------------------------------------------------
|
||||
# Livewire + Laravel routes (must come before static block)
|
||||
# -------------------------------------------------
|
||||
# Specific location for livewire.min.js (redirect to non-minified version)
|
||||
location = /livewire/livewire.min.js {
|
||||
return 301 /livewire/livewire.js$is_args$args;
|
||||
}
|
||||
|
||||
location ^~ /livewire/ {
|
||||
try_files $uri /index.php?$query_string;
|
||||
expires off;
|
||||
@@ -37,8 +42,10 @@ server {
|
||||
# Main Laravel entry point
|
||||
# -------------------------------------------------
|
||||
location / {
|
||||
auth_basic "Restricted Access";
|
||||
auth_basic_user_file /etc/nginx/.htpasswd;
|
||||
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
${BASIC_AUTH_DIRECTIVES}
|
||||
}
|
||||
|
||||
# -------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user