On a CentOS server 7, is jabberd, and I set bitrix, when referring to the server ip, the admin sends me on jabber how to configure to send it to bitrix
In Docker, among other things, raised 2 node and nginx server as a loadbalancer.
upstream localhost {
server node1:3000;
server node2:3000;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost;
proxy_set_header Host $Host;
}
}
Everywhere works fine, servers when you upgrade chang...
When pagespeed is enabled on occurs a strange time and not on all images but on some.
As seen in the photo the image is not loaded, although the attribute of src binary string spelled out (cut points not to litter the message) src="data:image/webp;base64,,.................jpg"
And the module settings quite austere
page...
There is a browser game and it is updated frequently. The problem is that after doing this, users have still loaded the old version. How to query the user's browser, that cache data does not need?
Good day!
I'm just starting to deal with nginx and I have following question:
How to describe the location to handle server/api/(any word) that you would like links to
server/api/hello
server/api/hello2
server/api/hello3
all in one location?
Did the other day HLS in nginx-vod-module, the problem appeared when I saw the increase in IOWAIT, notice that did not include the thread pool thread_pool, turned it on and immediately stopped to give the file .ts , m3u8 receive but do segments error server did not send. I climbed into the logs it's clean no bugs appeared. ...
Hi
I can not understand why but does not have a website configured via docker-compose
version: '3.1'
services:
nginx:
image: nginx:latest
ports:
- 80:80
- 443:443
volumes:
- ./hosts/mysite.local.conf:/etc/nginx/conf.d/mysite.local.conf
- ./www:/var/www
- ./www:/usr/share/nginx
- ./logs:/var/log/nginx
depends_...
There is an internal work service signed wildcard certificate.
More precisely: set up https for the service, and tossed the Sert and configured for the host job site https. But for domain names 4-level https is not working.
that is :
https://sitename.domain.com - works
https://temp1.sitename.domain.com - does not work. O...
With nginx it is possible to set a limit on the number of requests from one ip:
limit_req_zone $binary_remote_addr zone=zzz:10m;
...
"limit_req" zone=zzz burst=1000 nodelay;
Is there in nginx such a limitation, but for the total number of queries instead a single ip? And could this be considered as part of the system of pr...