Show all posts by user
Discussions in Russian
Page 1 of 43
Pages: 12345
Results 1 - 30 of 1287
If this 'default http://XYZ.cloudfront.net;' is also for EN, add such line explicitly,
~en http://XYZ.wpengine.com/;
by
itpp2012
-
How to...
No, HTTP is not the same as Stream (raw).
by
itpp2012
-
How to...
Only with the Stream module:
http://nginx.org/en/docs/stream/ngx_stream_core_module.html
by
itpp2012
-
How to...
Roman Arutyunyan Wrote:
-------------------------------------------------------
> We are open for feedback about QUIC in Stream, application protocols
> and the features you expect in Stream.
Hi Roman,
Maybe a dead mouse but I would expect this to work in a QUIC tls stream:
map $ssl_preread_server_name $sslhservice {}
by
itpp2012
-
Nginx Mailing List - English
server {
[...]
location / {
auth_basic "User/Pass needed";
auth_basic_user_file access.txt;
proxy_pass http://127.0.0.1:8080;
}
[...]
by
itpp2012
-
How to...
An easy Lua based solution designed 7 years ago and still works today for any OS
https://forum.nginx.org/read.php?2,257019,257019#msg-257019
https://github.com/bedowi/nginx/tree/master/conf/EBLB
by
itpp2012
-
Nginx Development
>> 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...
Page 1 of 43
Pages: 12345