{"id":3336,"date":"2014-03-11T16:07:37","date_gmt":"2014-03-11T21:07:37","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=3336"},"modified":"2022-06-03T03:47:04","modified_gmt":"2022-06-03T08:47:04","slug":"install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/","title":{"rendered":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\"><img decoding=\"async\" class=\"alignleft size-full wp-image-3337\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\" alt=\"install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\" width=\"257\" height=\"257\" \/><\/a>In this tutorial we will guide you through the steps of <strong>installing and running TiddlyWiki on a <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 6 VPS<\/a><\/strong>.<\/p>\n<p>We will also install and configure <a href=\"http:\/\/nginx.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Nginx<\/a> as a reverse proxy, so you can run <a href=\"http:\/\/tiddlywiki.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">TiddlyWiki<\/a> behind Nginx.<\/p>\n<p>What is TiddlyWiki?<\/p>\n<p>It is an open-source single page application wiki. The content is divided into a series of components called <i>Tiddlers<\/i>.<\/p>\n<p><!--more--><\/p>\n<h3><strong>UPDATE THE SYSTEM<\/strong><\/h3>\n<p>Make sure you are in a screen session and check if your <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> is fully up-to-date by running:<\/p>\n<pre>## screen -U -S tiddlywiki-screen\r\n## yum update<\/pre>\n<h3><strong>INSTALL DEVELOPMENT TOOLS<\/strong><\/h3>\n<p>We need some development tools on the system in order to build <code>NodeJs<\/code>. Install the <code>Development Tools<\/code> meta package using <code>yum<\/code><\/p>\n<pre>## yum groupinstall \"Development Tools\"<\/pre>\n<h3><strong>INSTALL NODEJS<\/strong><\/h3>\n<p>Compile and install <code>NodeJs<\/code> using the following commands:<\/p>\n<pre>## mkdir -p \/opt\/build\r\n## cd \/opt\/build\r\n## wget http:\/\/nodejs.org\/dist\/node-latest.tar.gz\r\n## tar xzvf node-latest.tar.gz\r\n## cd node-v*\r\n## .\/configure\r\n## make\r\n## make install<\/pre>\n<h3><strong>INSTALL AND SET-UP TIDDLY WIKI<\/strong><\/h3>\n<p>Install <code>TiddlyWiki<\/code> with the following command<\/p>\n<pre>## npm install -g tiddlywiki<\/pre>\n<p>Check TiddlyWiki is installed by executing<\/p>\n<pre>## tiddlywiki --version<\/pre>\n<p>Create user for tiddlywiki<\/p>\n<pre>## useradd -m tiddlywiki\r\n## su - tiddlywiki<\/pre>\n<p>Set-up a new wiki using<\/p>\n<pre>## tiddlywiki mywiki --init server\r\n## tiddlywiki mywiki --server<\/pre>\n<p><code>tiddlywiki<\/code> can be invoked like this<\/p>\n<pre>tiddlywiki --server &lt;port&gt; &lt;roottiddler&gt; &lt;rendertype&gt; &lt;servetype&gt; &lt;username&gt; &lt;password&gt; &lt;host&gt;<\/pre>\n<p>where the parameters are:<\/p>\n<ul>\n<li>port &#8211; port number to serve from (defaults to &#8220;8080&#8221;)<\/li>\n<li>roottiddler &#8211; the tiddler to serve at the root (defaults to &#8220;$:\/core\/save\/all&#8221;)<\/li>\n<li>rendertype &#8211; the content type to which the root tiddler should be rendered (defaults to &#8220;text\/plain&#8221;)<\/li>\n<li>servetype &#8211; the content type with which the root tiddler should be served (defaults to &#8220;text\/html&#8221;)<\/li>\n<li>username &#8211; the default username for signing edits<\/li>\n<li>password &#8211; optional password for basic authentication<\/li>\n<li>host &#8211; optional hostname to serve from (defaults to &#8220;127.0.0.1&#8221; aka &#8220;localhost&#8221;)<\/li>\n<\/ul>\n<h3><strong>INSTALL AND SET-UP NGINX<\/strong><\/h3>\n<p>In order to install <strong>Nginx<\/strong> in your <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 6 linux vps<\/a>, you need to have <code>EPEL<\/code> repository enabled on the system, so enable it using:<\/p>\n<pre>## wget -P \/tmp http:\/\/mirror.itc.virginia.edu\/fedora-epel\/6\/x86_64\/epel-release-6-8.noarch.rpm\r\n## rpm -Uvh \/tmp\/epel-release-6-8.noarch.rpm\r\n## rm -f \/tmp\/epel-release-6-8.noarch.rpm<\/pre>\n<p>once <code>EPEL<\/code> is enabled on the system, install <code>Nginx<\/code> using <code>yum<\/code><\/p>\n<pre>## yum install nginx<\/pre>\n<p>set-up server block<\/p>\n<pre>## vim \/etc\/nginx\/conf.d\/twiki.conf<\/pre>\n<pre>server {\r\n    listen           80;\r\n    server_name      mydomain.tld;\r\n    # vhost specific logs\r\n    access_log       \/var\/log\/nginx\/mydomain.tld.access.log combined;\r\n    location \/ {\r\n        proxy_pass   http:\/\/127.0.0.1:8080;\r\n        proxy_set_header        Host             $host;\r\n        proxy_set_header        X-Real-IP        $remote_addr;\r\n        proxy_set_header        X-Forwarded-For  $proxy_add_x_forwarded_for; \r\n    }\r\n}<\/pre>\n<p>restart nginx and add it to your system&#8217;s start-up<\/p>\n<pre>## service nginx restart\r\n## chkconfig nginx on<\/pre>\n<p>to make TiddlyWiki to be automatically started on system start-up, we need to create the following init script:<\/p>\n<pre>## vim \/etc\/init.d\/tiddlywiki<\/pre>\n<pre>#!\/bin\/sh\r\n\r\n#\r\n# chkconfig: 35 99 99\r\n# description: tiddlywiki\r\n#\r\n\r\n. \/etc\/rc.d\/init.d\/functions\r\n\r\nUSER=\"tiddlywiki\"\r\n\r\nDAEMON=\"\/usr\/local\/bin\/tiddlywiki\"\r\nPARAMS=\"--server\"\r\n\r\nLOCK_FILE=\"\/var\/lock\/subsys\/tiddlywiki\"\r\n\r\ndo_start()\r\n{\r\n        if [ ! -f \"$LOCK_FILE\" ] ; then\r\n                echo -n $\"Starting $SERVER: \"\r\n                runuser -l \"$USER\" -c \"$DAEMON $PARAMS &amp;\" &amp;&amp; echo_success || echo_failure\r\n                RETVAL=$?\r\n                echo\r\n                [ $RETVAL -eq 0 ] &amp;&amp; touch $LOCK_FILE\r\n        else\r\n                echo \"$SERVER is locked.\"\r\n                RETVAL=1\r\n        fi\r\n}\r\ndo_stop()\r\n{\r\n        echo -n $\"Stopping $SERVER: \"\r\n        pid=`ps -aefw | grep \"$DAEMON $SERVER\" | grep -v \" grep \" | awk '{print $2}'`\r\n        kill -9 $pid &gt; \/dev\/null 2&gt;&amp;1 &amp;&amp; echo_success || echo_failure\r\n        RETVAL=$?\r\n        echo\r\n        [ $RETVAL -eq 0 ] &amp;&amp; rm -f $LOCK_FILE\r\n}\r\n\r\ncase \"$1\" in\r\n        start)\r\n                do_start\r\n                ;;\r\n        stop)\r\n                do_stop\r\n                ;;\r\n        restart)\r\n                do_stop\r\n                do_start\r\n                ;;\r\n        *)\r\n                echo \"Usage: $0 {start|stop|restart}\"\r\n                RETVAL=1\r\nesac\r\n\r\nexit $RETVAL<\/pre>\n<pre>## chmod +x \/etc\/init.d\/tiddlywiki\r\n## chkconfig tiddlywiki on<\/pre>\n<p>&nbsp;<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install\u00a0TiddlyWiki for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we will guide you through the steps of installing and running TiddlyWiki on a CentOS 6 VPS. &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#more-3336\" aria-label=\"Read more about Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":3337,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13,1707],"tags":[34,177,49,239,411],"class_list":["post-3336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","category-web-servers","tag-centos","tag-linux-vps","tag-nginx","tag-nodejs","tag-tiddlywiki","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx\" \/>\n<meta property=\"og:description\" content=\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-03-11T21:07:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:47:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"257\" \/>\n\t<meta property=\"og:image:height\" content=\"257\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx\",\"datePublished\":\"2014-03-11T21:07:37+00:00\",\"dateModified\":\"2022-06-03T08:47:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/\"},\"wordCount\":383,\"commentCount\":9,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\",\"keywords\":[\"centos\",\"linux vps\",\"nginx\",\"nodejs\",\"tiddlywiki\"],\"articleSection\":[\"CentOS\",\"Tutorials\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/\",\"name\":\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\",\"datePublished\":\"2014-03-11T21:07:37+00:00\",\"dateModified\":\"2022-06-03T08:47:04+00:00\",\"description\":\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif\",\"width\":257,\"height\":257},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting","description":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/","og_locale":"en_US","og_type":"article","og_title":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx","og_description":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-03-11T21:07:37+00:00","article_modified_time":"2022-06-03T08:47:04+00:00","og_image":[{"width":257,"height":257,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif","type":"image\/gif"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx","datePublished":"2014-03-11T21:07:37+00:00","dateModified":"2022-06-03T08:47:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/"},"wordCount":383,"commentCount":9,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif","keywords":["centos","linux vps","nginx","nodejs","tiddlywiki"],"articleSection":["CentOS","Tutorials","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/","url":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/","name":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif","datePublished":"2014-03-11T21:07:37+00:00","dateModified":"2022-06-03T08:47:04+00:00","description":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/02\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx.gif","width":257,"height":257},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install and run TiddlyWiki on a CentoOS 6 VPS using Nginx"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=3336"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3336\/revisions"}],"predecessor-version":[{"id":42238,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3336\/revisions\/42238"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/3337"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=3336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=3336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=3336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}