skip to Main Content

Reverse Proxy for Django App 404 Not Found – Apache

I am following this guide to try show this url www.mycompany.com/testblog instead of www.mycompany.com:8000/testblog These are my current config files setup inside my website.comssl.conf file <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName website.com ServerAlias www.website.com DocumentRoot /var/www/website.com Redirect permanent / https://website.com/ ErrorLog…

VIEW QUESTION

No static files after deploying Django app – Amazon Web Sevices

I've deployed a multi container Django application to AWS EB with ECS running on 64bit Amazon Linux 2/3.2.3 platform. Here's the Dockerrun.aws.json file. { "AWSEBDockerrunVersion": "2", "containerDefinitions": [ { "essential": true, "image": "${AWS_ACOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/${IMAGE_NAME}:${IMAGE_TAG}", "mountPoints": [ { "containerPath": "/code/static", "sourceVolume": "web"…

VIEW QUESTION

anchor do nothing after second index – Jquery

I have a django-qcm with sections that change when clicking on anchors and using the scroll snap type property. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <style> html{ scroll-behavior: smooth;…

VIEW QUESTION
Back To Top
Search