Posts by Iohan Hinokuma • 9 points
7 posts
-
-2
votes2
answers1820
viewsA: How to configure multiple Nginx on a server?
Before Starting, make sure LEMP stack is installed on your VPS. You can check the Nginx server status with the following command: systemctl status Nginx Best method to host Multiple websites is to…
-
1
votes1
answer106
viewsA: Nginx: Angular pages not being loaded
location /api-checkmilk-nest/ { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://xx**`texto em negrito`**.us-west-2.elb.amazonaws.com/; } location /agrotrace/…
nginxanswered Iohan Hinokuma 9 -
0
votes0
answers11
viewsQ: Redirect Nginx Anonymous/normal tab
I could notice that in my environment, when I use the normal browser, it always forces HTTP redirection to HTTPS and the same does not occur in anonymous mode. I wish I had the same behavior…
nginxasked Iohan Hinokuma 9 -
0
votes3
answers332
viewsA: Container problem on Docker
In your case Docker ps lists the containers that are currently running, already the tag -the list all, including the stopped ones, in your case your container has stopped for some reason. You can…
dockeranswered Iohan Hinokuma 9 -
0
votes1
answer21
viewsQ: Jenkins Deploy to glassfish4 container
Hello, Basically I build my War using Maven and call the app deploy to container to run an instance of glassfish that is in another container, I point out the paths but I get returned an Exception…
-
0
votes2
answers416
viewsA: Comparison of two dates using Mysql varchar type
Syntax for CAST: CAST ( Expression AS data_type [ ( length ) ]) Syntax for CONVERT: CONVERT ( data_type [ ( length ) ] , Expression [ , style ] )
-
0
votes1
answer138
viewsQ: Firebird 2.5 Query of a trial
I am using this code to bring all calls from previous months being -1 last month, -2 the month before last month, but I need to bring the 3 results ( -1, -2 ,-3 ) which I must modify ? SELECT COUNT…