DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:file2dw

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
plugin:file2dw [2018-11-26 14:03] qky666plugin:file2dw [2019-02-20 19:05] qky666
Line 6: Line 6:
 email      : qky669@gmail.com  email      : qky669@gmail.com 
 type       : action type       : action
-lastupdate : 2018-11-26+lastupdate : 2019-03-20
 compatible : Greebo, 2018-04-22 compatible : Greebo, 2018-04-22
 depends    :  depends    : 
Line 22: Line 22:
  
 ===== Installation ===== ===== Installation =====
 +
 +==== Direct install ====
  
 :!: **External requirements:** This plugin requires the following additional components that must be installed separately:  :!: **External requirements:** This plugin requires the following additional components that must be installed separately: 
Line 33: Line 35:
 <code>sudo apt-get wget default-jre libreoffice-writer</code> <code>sudo apt-get wget default-jre libreoffice-writer</code>
  
-  * If you wish, you can execute the script //installLatestPandoc.sh// (included with this plugin in `dockerfolder) to install the latest version of pandoc. Or you can install pandoc any other way (check that version installed is not very outdated, or the conversion can fail).+  * If you wish, you can execute the script //installLatestPandoc.sh// (included with this plugin in //docker/dokuwikiapp// folder) to install the latest version of pandoc. Or you can install pandoc any other way (check that version installed is not very outdated, or the conversion can fail).
  
 Install the plugin using the [[plugin:plugin|Plugin Manager]] and the download URL above, which points to latest version of the plugin. Refer to [[:Plugins]] on how to install plugins manually. Install the plugin using the [[plugin:plugin|Plugin Manager]] and the download URL above, which points to latest version of the plugin. Refer to [[:Plugins]] on how to install plugins manually.
  
-==== soffice conversion (.doc support) ====+=== soffice conversion (.doc support) ===
  
-PHP code (at least in my system) is executed by the user //daemon//. I had problems running a Java application with this user (it seems soffice is a Java application) so I decided to run the soffice conversion using //sudo//. To make it work, I had to add a line to the file ///etc/sudoers//. You can do the same executing: +PHP code (at least in my system) is executed by the user //www-data//. I had problems running a Java application with this user (it seems soffice is a Java application) so I decided to run the soffice conversion using //sudo//. To make it work, I had to add a line to the file ///etc/sudoers//. You can do the same executing: 
  
-<code>sudo echo "daemon ALL=(root)NOPASSWD:/usr/bin/soffice" >> /etc/sudoers</code>+<code>sudo echo "www-data ALL=(root)NOPASSWD:/usr/bin/soffice" >> /etc/sudoers</code>
  
 I'm not a security expert, but I think that this should not be a problem for anybody. If you do not use the soffice conversion (.doc support), you don't need to do this. I'm not a security expert, but I think that this should not be a problem for anybody. If you do not use the soffice conversion (.doc support), you don't need to do this.
  
 If PHP code is executed by any other user on your system, you only have to change it in the previous command. If PHP code is executed by any other user on your system, you only have to change it in the previous command.
 +
 +==== Docker ====
 +
 +If you want, you can use Docker to deploy Dokuwiki and meet the requirements mentioned above “for free”. If you are new to Docker, you will probably need to search the web for information before you can use it. See https://www.docker.com/
 +
 +You will have to make several changes in //docker-compose-yml// files (at least in one of them). I hope you will find usefull the comments on the file. To prevent errors, you can copy the //docker// folder contents elsewhere in your system, so you don’t lose these changes when you get updates. //docker-compose-yml// files use the files in //docker/dokuwikiapp//, so take care when moving this arround.
 +
 +**Note**: This creates an “empty” Dokuwiki, so you will have to follow the install instructions in https://www.dokuwiki.org/install (from step 4) to make it usable.
 +
 +Two “flavours” are provided:
 +
 +  * //simple//
 +  * //proxy//
 +
 +=== Simple ===
 +
 +Path: //docker/simple//.
 +
 +A simple //docker-compose.yml// that will create a container with Dokuwiki installed on it.
 +
 +To run this, execute:
 +
 +<code>
 +cd docker/simple
 +docker-compose up -d
 +</code>
 +
 +=== Proxy ===
 +
 +Path: //docker/proxy//.
 +
 +A //docker-compose.yml// that will create a container with Dokuwiki installed on it and a reverse proxy that allows //https// access to it.
 +
 +It uses Let’s Encrypt services (https://letsencrypt.org/) so you will have to do a little reserach to know how it works.
 +
 +To run this, execute:
 +
 +<code>
 +cd docker/proxy
 +docker-compose up -d
 +</code>
  
 ===== Usage ===== ===== Usage =====
plugin/file2dw.txt · Last modified: 2023-10-29 13:16 by Klap-in

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki