Question
is nginx has a limit for domain ?
Hi ,
I have a web server with nginx and I have a round 1017 domain works on it ,
I’m using forge service to create a new domain and ssl certification , but now I can’t add any new domain
if I add a new domain I got nginx an error :
nginx.service failed because a configured resource limit was exceeded
my nginx configration :
user forge;
worker_processes auto;
worker_rlimit_nofile 65530;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 65535;
multi_accept on;
}
http {
##
client_body_timeout 25s;
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 30;
types_hash_max_size 2048;
server_tokens off;
server_names_hash_bucket_size 2048;
# server_name_in_redirect off;
can anyone help me with this issue .
thank you
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×