Show all posts by user
Discussions in German
Page 1 of 43
Pages: 12345
Results 1 - 30 of 1280
>> proxy_pass http://0.0.0.0:2300;
by
itpp2012
-
How to...
@Igor Sysoev, thanks for all your work and a wonderful product, we all hope you enjoy whatever you do next.
by
itpp2012
-
Nginx Mailing List - English
https://stackoverflow.com/questions/65716736/how-to-get-a-part-of-url-nginx-rewrite-lua
by
itpp2012
-
Other discussion
Ssh does not pass SNI, and thats the only difference with https, after (or before) you could split for http but clients will get confused.
Ea. you have to use a mix of $ssl_preread_protocol and $ssl_preread_server_name to get all 3 working.
by
itpp2012
-
How to...
Technically that should work, but you are mixing 2 different types of traffic on a none standard port and you don't have a ssh redirect.
by
itpp2012
-
How to...
alen.loncaric Wrote:
-------------------------------------------------------
> But i don't know how to combine SSH, HTTPS(TLS) and HTTP on same port?
> Is this even possible ? So I have one "service port" for serving iot
Possible but not going to work as http is not encrypted.
by
itpp2012
-
How to...
Your google keywords for today are: Lua, Redis, Openresty.
by
itpp2012
-
How to...
Within the location block you will see:
index index.html index.htm;
There you can edit/add whatever you like.
by
itpp2012
-
Other discussion
Not possible with stock nginx but you can with Lua (openresty), here we use it to map any.dom.com where 'any' has aliases stored in a cached database which gets refreshed daily.
by
itpp2012
-
How to...
You've been busy with this for 2 weeks...
It's very easy,
1. kill all nginx processes
2. replace binary
3. start nginx
4. post some vague notice about being offline for 10 seconds and apologize
5. move on with life.
by
itpp2012
-
Nginx Mailing List - English
There isn't an answer other than this has not been implemented anywhere yet.
However, you can look into this sample;
https://www.codeproject.com/Articles/11578/Encryption-using-the-Win32-Crypto-API
And then incorporate this with Lua.
ea. https://luajit.org/ext_ffi.html
by
itpp2012
-
How to...
https://serverfault.com/questions/432578/nginx-stop-reload-on-windows-failed-for-access-is-denied
by
itpp2012
-
How to...
rafael.silva Wrote:
-------------------------------------------------------
> proxy_pass http://$upstream_pma:80/;
> proxy_pass http://$upstream_file:80;
Note the difference "/".
by
itpp2012
-
How to...
What about;
location /admin/ {
by
itpp2012
-
How to...
Have a look in the backend logs as 'Connection refused' is a thing from the backend.
by
itpp2012
-
How to...
Swap the Location blocks around.
by
itpp2012
-
How to...
location /monitor/ {
proxy_pass http://ip/monitor/;
Becomes: http://ip/monitor/monitor
by
itpp2012
-
How to...
location /data/ {
root /home/data;
Becomes /home/data/data
by
itpp2012
-
How to...
https://forum.nginx.org/read.php?11,260587,270659#msg-270659
by
itpp2012
-
How to...
https://github.com/vozlt/nginx-module-vts
by
itpp2012
-
How to...
You may have to enable debug logging to see how each location is handled.
And Curl to see via the headers if the server you think is connected is the same.
ea., proxy_pass http://10.3.3.1:9595/; and take 10.3.3.2 offline.
by
itpp2012
-
How to...
Change
location /manage/
in to
location /manage
by
itpp2012
-
How to...
One mans video stream can be another mans data stream, there are streaming features in nginx which can be (re)used for other (large) data streams, changing how you handle them can make it work for you without fiddling with the core workings.
by
itpp2012
-
Nginx Development
Issue a fixed IP address to such device and block that IP address from going out to the internet.
Then use ssh or vpn to access your router and from there on to access the device.
This works for any device.
by
itpp2012
-
Other discussion
Page 1 of 43
Pages: 12345