After struggling for 5 days, using google, chatgpt, I really have no idea what I am doing wrong.
I have 1 instance of OpenVPN server running perfectly and doing what I configured.
I copied config file, changed ip, ports, i run the second instance, connect as a client, verify that routes are there using route print, but still cannot reach anything on the internet using second instance

Can you please tell me what I configure wrong?
This is config file of instance 1 that is working
Config1
local 10.0.0.4
port 1194
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key
dh dh.pem
auth SHA512
tls-crypt tc.key
topology subnet
server 10.8.0.0 255.255.255.0
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
ifconfig-pool-persist ipp.txt
keepalive 10 120
cipher AES-256-CBC
user nobody
group nogroup
persist-key
persist-tun
verb 3
crl-verify crl.pem
explicit-exit-notify
duplicate-cn
max-clients 200
management localhost 1194
management-query-passwords
push "route 57.128.47.162 255.255.255.255"
push "route 89.187.191.192 255.255.255.255"
push "route 185.152.65.162 255.255.255.255"
push "route 62.182.82.132 255.255.255.255"
push "route 5.135.137.92 255.255.255.255"
push "route 151.80.23.92 255.255.255.255"
push "route 141.94.143.122 255.255.255.255"
and this is second that is not working
Config2
local 10.0.0.4
port 1180
proto udp
dev tun
ca /etc/openvpn/server/ca.crt
cert /etc/openvpn/server/server.crt
key /etc/openvpn/server/server.key
dh /etc/openvpn/server/dh.pem
auth SHA512
tls-crypt /etc/openvpn/server/tc.key
topology subnet
server 10.8.16.0 255.255.255.0
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
ifconfig-pool-persist ipp2.txt
keepalive 10 120
cipher AES-256-CBC
user nobody
group nogroup
persist-key
persist-tun
verb 3
crl-verify /etc/openvpn/server/crl.pem
explicit-exit-notify
duplicate-cn
max-clients 200
management localhost 1180
management-query-passwords
push "route 57.128.47.162 255.255.255.255"
push "route 89.187.191.192 255.255.255.255"
push "route 185.152.65.162 255.255.255.255"
push "route 62.182.82.132 255.255.255.255"
push "route 5.135.137.92 255.255.255.255"
push "route 151.80.23.92 255.255.255.255"
push "route 141.94.143.122 255.255.255.255"