File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 11
11
- [ Where are extensions stored?] ( #where-are-extensions-stored )
12
12
- [ How is this different from VS Code Codespaces?] ( #how-is-this-different-from-vs-code-codespaces )
13
13
- [ How should I expose code-server to the internet?] ( #how-should-i-expose-code-server-to-the-internet )
14
+ - [ Can I store my password hashed?] ( #can-i-store-my-password-hashed )
14
15
- [ How do I securely access web services?] ( #how-do-i-securely-access-web-services )
15
16
- [ Sub-paths] ( #sub-paths )
16
17
- [ Sub-domains] ( #sub-domains )
@@ -159,6 +160,16 @@ for free.
159
160
160
161
Again, please follow [ ./guide.md] ( ./guide.md ) for our recommendations on setting up and using code-server.
161
162
163
+ ## Can I store my password hashed?
164
+
165
+ Yes you can! Use ` hashedPassword ` instead of ` password ` . Generate the hash with:
166
+
167
+ ```
168
+ echo "thisismypassword" | sha256sum | cut -d' ' -f1
169
+ ```
170
+
171
+ Of course replace ` "thisismypassword" ` with your actual password.
172
+
162
173
## How do I securely access web services?
163
174
164
175
code-server is capable of proxying to any port using either a subdomain or a
You can’t perform that action at this time.
0 commit comments