diff --git a/How-to-create-self‐signed-SSL-certificate-for-3X‐UI-webpanel-(also-if-you-don't-use-domains).md b/How-to-create-self‐signed-SSL-certificate-for-3X‐UI-webpanel-(also-if-you-don't-use-domains).md
index 124a017..876f074 100644
--- a/How-to-create-self‐signed-SSL-certificate-for-3X‐UI-webpanel-(also-if-you-don't-use-domains).md
+++ b/How-to-create-self‐signed-SSL-certificate-for-3X‐UI-webpanel-(also-if-you-don't-use-domains).md
@@ -4,7 +4,7 @@ I know, that it is security issue for me, but I can't use LetsEncrypt certificat
Solution - make self-signed certificate for my IP address.
## Lets do this!
Go to server bash.
-I create folder inside /usr/local/x-ui/ directory for cert's.
+I create folder inside /root directory for cert's.
`cd /root`
`mkdir ssl-srt`
`cd ssl-srt`
@@ -12,15 +12,15 @@ Next step - create certificates. I make it for 10 years, if you need more or les
`openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 3650`
### **WARN**
It will ask you for PEM pass phrase - remember it! It will bee needed for next step! Or use easy - I use "1234"
-
+
Next step - input data for certificate. I leave all blank.
**!!!BUT!!!**
You need to input **your real IP address into Common Name field**.
-
+
Certs made. But if you try to install it inside the panel, you will take an error, cause your private key locked by pass phrase.
Let's unlock it!
`openssl rsa -in key.pem -out key.un.pem -passin pass:YOUR PASS PHRASE`
-
+
## And the final round - install it into the WebPanel.
