Replies: 1 comment
-
Test the connectionDownload sing-box CLI both on your computer and your server. Clone this repository on your server. Connect Wi-Fi or network port to CUMT_Tec on your computer. Assumptions: The server IP for you to visit is Generate certificate and key pairsRun following commands to generate on your server. Please run one by one. You can modify the options like years or bits to meet your needs. # create private key
openssl genpkey -algorithm RSA -out server.key -pkeyopt rsa_keygen_bits:2048
# create certificate signing request
openssl req -new -key server.key -out server.csr
# create self-signed certificate
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt It will prompt several inputs. We recommend you type self-owned domain in Common Name (CN) field. The generated files should be in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Requirements
Beta Was this translation helpful? Give feedback.
All reactions