[X2Go-Commits] [[X2Go Wiki]] page changed: wiki:advanced:x2gohtmlclient
wiki-admin at x2go.org
wiki-admin at x2go.org
Fri Dec 31 21:53:43 CET 2021
A page in your DokuWiki was added or changed. Here are the details:
Browser : Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:95.0) Gecko/20100101 Firefox/95.0
IP Address : 137.26.240.242
Hostname : 137-026-240-242.biz.spectrum.com
Old Revision : https://wiki.x2go.org/doku.php/wiki:advanced:x2gohtmlclient?rev=1640983752
New Revision : https://wiki.x2go.org/doku.php/wiki:advanced:x2gohtmlclient
Date of New Revision: 2021/12/31 20:53
Edit Summary : Mark up file names and such
User : mikep
There may be newer changes after this revision. If this
happens, a message will be shown on the top of the rev page.
@@ -78,10 +78,10 @@
<file>
server {
listen 443 ssl;
server_name your_host;
- ssl_certificate <your SSL cert>;
- ssl_certificate_key <your SSL cert key>;
+ ssl_certificate "/etc/pki/nginx/server.crt";
+ ssl_certificate_key "/etc/pki/nginx/private/server.key";
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers off;
ssl_session_timeout 5m;
@@ -125,36 +125,36 @@
====== Building and Installing ======
===== x2gohtmlclient =====
- Run ./minify.sh to combine x2gohtmlclient's JavaScript classes and remove the whitespace from the result.
- The output will be dist/x2gokdriveclient.min.js, and you should copy this file to $WEBROOT/assets/js/.
+ Run ''./minify.sh'' to combine x2gohtmlclient's JavaScript classes and remove the whitespace from the result.
+ The output will be ''dist/x2gokdriveclient.min.js'', and you should copy this file to ''$WEBROOT/assets/js/''.
The other assets should be installed as follows:
- * Place index.html in $WEBROOT/assets/css/.
- * Place css/* in $WEBROOT/assets/css/.
- * Place img/*/*/* in $WEBROOT/assets/img/.
+ * Place ''index.html'' in ''$WEBROOT/assets/css/''.
+ * Place ''css/*'' in ''$WEBROOT/assets/css/''.
+ * Place ''img/*/*/*'' in ''$WEBROOT/assets/img/''.
===== x2gowebrpc =====
- Copy x2gorpc.cgi to $WEBROOT/assets/rpc/.
+ Copy ''x2gorpc.cgi'' to ''$WEBROOT/assets/rpc/''.
===== x2gowswrapper =====
Build x2gowswrapper using qmake:
<code>
$ qmake-qt5 && make
</code>
- Install the resulting program named x2gowswrapper to /usr/sbin/.
+ Install the resulting program named x2gowswrapper to ''/usr/sbin/''.
- Create the directory /var/log/x2gows, and ensure the web server's user can create and modify files therein.
+ Create the directory ''/var/log/x2gows'', and ensure the web server's user can create and modify files therein.
- Create the file named /etc/x2go/x2gows/x2gows.options which contains the following:
+ Create the file named ''/etc/x2go/x2gows/x2gows.options'' that contains the following:
<code>
ws_proto=wss
ssl_cert=/etc/pki/nginx/server.crt
ssl_key=/etc/pki/nginx/private/server.key
ssl_only=true
log_dir=/var/log/x2gows
</code>
- Ensure the values of ssl_cert and ssl_key match NGINX's similar values,
+ Ensure the values of ''ssl_cert'' and ''ssl_key'' match the corresponding values in NGINX's configuration,
and ensure the user running NGINX can read the files at both paths as well as the configuration file itself.
--
This mail was generated by DokuWiki at
https://wiki.x2go.org/
More information about the x2go-commits
mailing list