DokuWiki

It's better when it's simple

User Tools

Site Tools


install:macosx

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
install:macosx [2013-08-23 08:54] – [Notes] 14.137.98.62install:macosx [2022-10-30 06:28] (current) – fixed internal link 2a02:908:1873:7020:b811:fc43:cac1:18b8
Line 15: Line 15:
       * CHANGE: <code>#LoadModule php5_module</code>       * CHANGE: <code>#LoadModule php5_module</code>
       * TO: <code>LoadModule php5_module </code>       * TO: <code>LoadModule php5_module </code>
-  - [[sb>dokuwiki|Download dokuwiki-yyyy-mm-dd.tgz]] (assuming to ~/Downloads)+  - [[http://download.dokuwiki.org/|Download dokuwiki-yyyy-mm-dd.tgz]] (assuming to ~/Downloads)
   - Unpack downloaded file, move to appropriate location, and change ownership:<code bash>   - Unpack downloaded file, move to appropriate location, and change ownership:<code bash>
 $ cd ~/Downloads && tar -zxvf dokuwiki-yyyy-mm-dd.tgz $ cd ~/Downloads && tar -zxvf dokuwiki-yyyy-mm-dd.tgz
 $ mv dokuwiki-yyyy-mm-dd ~/Sites/dokuwiki $ mv dokuwiki-yyyy-mm-dd ~/Sites/dokuwiki
 $ cd ~/Sites/dokuwiki $ cd ~/Sites/dokuwiki
-$ sudo chown -R www data conf lib/plugins</code>+$ sudo chown -R www data conf lib/plugins lib/tpl</code>
   - Start Personal Web Sharing in System Preferences -> Sharing    - Start Personal Web Sharing in System Preferences -> Sharing 
 You should now be able to run the installer at [[http://localhost/~your_username/dokuwiki/install.php]] You should now be able to run the installer at [[http://localhost/~your_username/dokuwiki/install.php]]
Line 27: Line 27:
 Please follow the following link to get Apache run under OSX Mountain Lion: Please follow the following link to get Apache run under OSX Mountain Lion:
  
-http://osxdaily.com/2012/09/02/start-apache-web-server-mac-os-x/+EDIT2 (Oct2022)MacOS since Monterey does not include a web server anymoreConsider installing Dokuwiki with built in PHP and web server: [[:php_build-in_webserver]]
  
 +https://discussions.apple.com/docs/DOC-3083
 ===== Mac OS X Server ===== ===== Mac OS X Server =====
 For Tiger (10.4.x) and Panther (10.3.x) server: For Tiger (10.4.x) and Panther (10.3.x) server:
  
   - Mac OS Server has Apache and PHP pre-installed; they are enabled through the Server Admin application. Enable "php4_module" under Web -> Modules, and start (or restart) and configure the web service.   - Mac OS Server has Apache and PHP pre-installed; they are enabled through the Server Admin application. Enable "php4_module" under Web -> Modules, and start (or restart) and configure the web service.
-  - [[sb>dokuwiki|Download dokuwiki-yyyy-mm-dd.tgz]] (assuming to ~/Desktop)+  - [[http://download.dokuwiki.org/|Download dokuwiki-yyyy-mm-dd.tgz]] (assuming to ~/Desktop)
   - From the command line:<code bash>   - From the command line:<code bash>
 $ cd ~/Desktop && tar -zxvf dokuwiki-yyyy-mm-dd.tgz $ cd ~/Desktop && tar -zxvf dokuwiki-yyyy-mm-dd.tgz
Line 43: Line 44:
 You should now be able to run the installer at [[http://localhost/dokuwiki/install.php]] You should now be able to run the installer at [[http://localhost/dokuwiki/install.php]]
  
 +====== DokuWiki with Mac OS X and Nginx ======
 +If you use Nginx as server, You should config nginx.conf like:
 +
 + index index.php;
 + location  ~ '^/(data|conf|bin|inc)/' {
 + deny all;
 + }
 + location ~ /.+\.php$ {
 + fastcgi_pass   127.0.0.1:9000;
 + fastcgi_param   SCRIPT_FILENAME    $document_root/$fastcgi_script_name;
 + include        fastcgi_params;
 + }
 +
 +Further instructions for Nginx: https://www.nginx.com/resources/wiki/start/topics/recipes/dokuwiki/
install/macosx.1377240845.txt.gz · Last modified: 2013-08-23 08:54 by 14.137.98.62

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