Some checks failed
continuous-integration/drone/push Build is failing
- Add backend/utils.py for URL management - Update serializers to use normalize_file_url() - Update views to use URL utils from env vars - Fix frontend components to use NEXT_PUBLIC_API_URL - Add new env vars: DJANGO_BACKEND_URL, DJANGO_MEDIA_BASE_URL - Replace all hardcoded localhost:8000 with configurable URLs
205 lines
7.9 KiB
Bash
Executable File
205 lines
7.9 KiB
Bash
Executable File
#!/bin/bash
|
||
|
||
# Скрипт для исправления nginx путей API для корректной работы с Django
|
||
echo "🔧 Исправление nginx путей API для Django"
|
||
echo "=========================================="
|
||
|
||
# Создание новой конфигурации nginx с правильными путями
|
||
cat > /etc/nginx/sites-available/links << 'EOF'
|
||
# HTTP сервер - редирект на HTTPS
|
||
server {
|
||
listen 80;
|
||
server_name links.shareon.kr sharon.kr;
|
||
|
||
# Let's Encrypt challenge
|
||
location /.well-known/acme-challenge/ {
|
||
root /var/www/html;
|
||
}
|
||
|
||
# Редирект всех HTTP запросов на HTTPS
|
||
location / {
|
||
return 301 https://$server_name$request_uri;
|
||
}
|
||
}
|
||
|
||
# HTTPS сервер
|
||
server {
|
||
listen 443 ssl;
|
||
http2 on;
|
||
server_name links.shareon.kr sharon.kr;
|
||
|
||
# SSL конфигурация
|
||
ssl_certificate /etc/letsencrypt/live/links.shareon.kr/fullchain.pem;
|
||
ssl_certificate_key /etc/letsencrypt/live/links.shareon.kr/privkey.pem;
|
||
|
||
# SSL настройки безопасности
|
||
ssl_protocols TLSv1.2 TLSv1.3;
|
||
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA256:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA;
|
||
ssl_prefer_server_ciphers on;
|
||
ssl_session_cache shared:SSL:10m;
|
||
ssl_session_timeout 5m;
|
||
|
||
# Security headers
|
||
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
||
add_header X-Frame-Options DENY always;
|
||
add_header X-Content-Type-Options nosniff always;
|
||
add_header X-XSS-Protection "1; mode=block" always;
|
||
|
||
# Proxy API requests to backend (Django) - БЕЗ завершающего слеша
|
||
location /api {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto https;
|
||
|
||
# CORS headers для API
|
||
add_header 'Access-Control-Allow-Origin' '*' always;
|
||
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
|
||
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization' always;
|
||
|
||
if ($request_method = 'OPTIONS') {
|
||
add_header 'Access-Control-Allow-Origin' '*';
|
||
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS';
|
||
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization';
|
||
add_header 'Access-Control-Max-Age' 1728000;
|
||
add_header 'Content-Type' 'text/plain; charset=utf-8';
|
||
add_header 'Content-Length' 0;
|
||
return 204;
|
||
}
|
||
}
|
||
|
||
# Proxy admin requests to backend (Django) - БЕЗ завершающего слеша
|
||
location /admin {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto https;
|
||
}
|
||
|
||
# Serve static files from Django - БЕЗ завершающего слеша
|
||
location /static {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Forwarded-Proto https;
|
||
expires 1y;
|
||
add_header Cache-Control "public, immutable";
|
||
}
|
||
|
||
# Serve media files from Django - БЕЗ завершающего слеша
|
||
location /storage {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Forwarded-Proto https;
|
||
expires 1y;
|
||
add_header Cache-Control "public";
|
||
}
|
||
|
||
# Proxy to frontend (Next.js) - все остальное
|
||
location / {
|
||
proxy_pass http://localhost:3000;
|
||
proxy_http_version 1.1;
|
||
proxy_set_header Upgrade $http_upgrade;
|
||
proxy_set_header Connection "upgrade";
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto https;
|
||
proxy_cache_bypass $http_upgrade;
|
||
|
||
# Timeout настройки
|
||
proxy_connect_timeout 30s;
|
||
proxy_send_timeout 30s;
|
||
proxy_read_timeout 86400;
|
||
}
|
||
}
|
||
|
||
# HTTP сервер для localhost (разработка)
|
||
server {
|
||
listen 80;
|
||
server_name localhost 127.0.0.1;
|
||
|
||
# Proxy API requests to backend (Django) - БЕЗ завершающего слеша
|
||
location /api {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto $scheme;
|
||
}
|
||
|
||
# Proxy admin requests to backend (Django) - БЕЗ завершающего слеша
|
||
location /admin {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto $scheme;
|
||
}
|
||
|
||
# Serve static files from Django - БЕЗ завершающего слеша
|
||
location /static {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
expires 1y;
|
||
add_header Cache-Control "public, immutable";
|
||
}
|
||
|
||
# Serve media files from Django - БЕЗ завершающего слеша
|
||
location /storage {
|
||
proxy_pass http://localhost:8000;
|
||
proxy_set_header Host $host;
|
||
expires 1y;
|
||
add_header Cache-Control "public";
|
||
}
|
||
|
||
# Proxy to frontend (Next.js) - все остальное
|
||
location / {
|
||
proxy_pass http://localhost:3000;
|
||
proxy_http_version 1.1;
|
||
proxy_set_header Upgrade $http_upgrade;
|
||
proxy_set_header Connection "upgrade";
|
||
proxy_set_header Host $host;
|
||
proxy_set_header X-Real-IP $remote_addr;
|
||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
proxy_set_header X-Forwarded-Proto $scheme;
|
||
proxy_cache_bypass $http_upgrade;
|
||
proxy_read_timeout 86400;
|
||
}
|
||
}
|
||
EOF
|
||
|
||
echo "✅ Новая конфигурация nginx создана"
|
||
|
||
# Проверка синтаксиса
|
||
echo "🔍 Проверка синтаксиса nginx..."
|
||
if nginx -t; then
|
||
echo "✅ Синтаксис конфигурации корректен"
|
||
|
||
# Перезапуск nginx
|
||
echo "🔄 Перезапуск nginx..."
|
||
systemctl reload nginx
|
||
|
||
if systemctl is-active --quiet nginx; then
|
||
echo "✅ nginx успешно перезапущен"
|
||
echo ""
|
||
echo "🎉 Исправление nginx путей завершено!"
|
||
echo ""
|
||
echo "Изменения:"
|
||
echo "• Убраны завершающие слеши из location директив"
|
||
echo "• API теперь работает как /api, /admin, /static, /storage"
|
||
echo "• Исправлен media путь с /media на /storage"
|
||
echo ""
|
||
echo "Проверьте работу:"
|
||
echo "curl -I https://links.shareon.kr/api/"
|
||
echo "curl -I https://links.shareon.kr/admin/"
|
||
echo "curl -I https://links.shareon.kr/static/"
|
||
else
|
||
echo "❌ Ошибка при перезапуске nginx"
|
||
systemctl status nginx
|
||
fi
|
||
else
|
||
echo "❌ Ошибка в синтаксисе конфигурации nginx"
|
||
echo "Восстановление предыдущей конфигурации..."
|
||
fi |