목록웹 (3)
WinGyu_coder
from rest_framework.views import APIView from rest_framework.exceptions import NotAuthenticated from rest_framework.permissions import IsAuthenticated from django.shortcuts import redirect class PageAPIView(APIView): permission_classes = [IsAuthenticated] def handle_exception(self, exc): if isinstance(exc, NotAuthenticated): return redirect('login_url') return super().handle_exception(exc) 아주 간편..
1. UI8 원하는 디자인 구매 후 사용 https://ui8.net 2. 크몽 (전문가 외주) https://kmong.com/ 전문가가 필요한 순간, 프리랜서 마켓 No.1 크몽 마케팅·디자인·IT프로그래밍·영상 등 다양한 비즈니스 분야의 전문가를 만나보세요! kmong.com 3. Tailwind css (부트스트랩과 같은 CSS 라이브러리) https://tailwindcss.com/ Tailwind CSS - Rapidly build modern websites without ever leaving your HTML. Tailwind CSS is a utility-first CSS framework for rapidly building modern websites without ever leav..
우분투에서 NGINX를 설정하는 기본적인 단계는 다음과 같습니다. 설치: 우분투의 기본 패키지 저장소에서 NGINX를 설치하려면 먼저 저장소를 업데이트하고 설치하세요: sudo apt update sudo apt install nginx 방화벽 설정: 우분투는 UFW라는 간단한 방화벽 툴을 제공합니다. NGINX에는 몇 가지 프로파일이 UFW 규칙에 미리 등록되어 있습니다. UFW를 활성화하려면: sudo ufw enable NGINX를 허용하려면: sudo ufw allow 'Nginx Full' 서비스 시작: sudo systemctl start nginx 자동으로 부팅 시 시작하게 하려면: sudo systemctl enable nginx 설정 파일 위치: 메인 설정 파일: /etc/..