Posts by Kaio Cesar • 305 points
8 posts
-
0
votes1
answer123
viewsA: Unidentified session in some logins on Django
Well, at the end of the day due to tiredness I didn’t notice a detail exdrexulo but not less important, which is the URL to which you make a redirect, which was in ALLOWED_HOSTS without www. Solved…
-
0
votes1
answer123
viewsQ: Unidentified session in some logins on Django
I am doing a maintenance on a Django app version 1.5 with DRF 2.3. This app features off-the-shelf user authentication that works well. See a summary below: Accounts/views.py class…
-
0
votes1
answer94
viewsQ: Djandorestframework standardize endpoints for methods with different permissions
I am using Django 1.10 with DRF lib. I created an Endpoint /api/contact/ and in this endpoint I apply 2 methods (GET and POST), and GET can only be viewed with permission, and POST can be requested…
-
1
votes1
answer575
viewsA: Nginx - running php app and Node on the same domain with different ports
I was able to find the solution, were two problems that were interrupting the execution of this direction. 1. 8080 is an alias of port 80, so it would not be possible to do this for the same domain.…
-
3
votes1
answer575
viewsQ: Nginx - running php app and Node on the same domain with different ports
I am configuring a Blocks in Nginx, but I’m having difficulty running two different apps, see the following situation: I have 2 apps (PHP and Node.js) only one domain (example.com.br) and I need to…
-
2
votes1
answer718
viewsQ: Run two services in the same domain on separate ports
I need to configure an application that has two different services running on port 80 and another on 8080, but in the same domain. I ask you if it’s possible and how could I set you up this way?…
nginxasked Kaio Cesar 305 -
2
votes1
answer183
viewsQ: Django - extend admin template
could anyone indicate the best way to extend the Django template? and what is the best way to share a template with the Adminstrative area and the site. I am using Django version 1.8.6 and…
-
12
votes3
answers1828
viewsQ: How does version naming work for private or public projects?
I’m developing a project that serves as bootstrap for future contributions via Git, and would like to know which version scheme is most used, say "version" relative to the state the software is,…