<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nitroware</title>
	<atom:link href="http://www.nitroware.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.nitroware.org</link>
	<description>“Where a new invention promises to be useful, it ought to be tried” - Thomas Jefferson</description>
	<lastBuildDate>Mon, 12 Mar 2012 17:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Possible MySQL Solutions for iOS Apache/HTTPD Server</title>
		<link>http://www.nitroware.org/legal-ios/possible-mysql-solutions-for-ios-apache-httpd-server?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=possible-mysql-solutions-for-ios-apache-httpd-server</link>
		<comments>http://www.nitroware.org/legal-ios/possible-mysql-solutions-for-ios-apache-httpd-server#comments</comments>
		<pubDate>Sat, 06 Aug 2011 15:15:55 +0000</pubDate>
		<dc:creator>nitrx</dc:creator>
				<category><![CDATA[Legal iOS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS MySQL Server]]></category>
		<category><![CDATA[iOS Web Server]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone MySQL Server]]></category>
		<category><![CDATA[iPhone Web Server]]></category>
		<category><![CDATA[Legal]]></category>

		<guid isPermaLink="false">http://www.nitroware.org/?p=45</guid>
		<description><![CDATA[Great news, we have possibly found a solution for a iOS/iPhone device Web server&#8217;s MySQL component. Throughout the internet, this seems to be the mission link for making any iOS device a web server. Right now the biggest issue we &#8230; <a href="http://www.nitroware.org/legal-ios/possible-mysql-solutions-for-ios-apache-httpd-server">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Great news, we have possibly found a solution for a iOS/iPhone device Web server&#8217;s MySQL component.  </p>
<p>Throughout the internet, this seems to be the mission link for making any iOS device a web server.  Right now the biggest issue we have now is making sure that it is of a legal origin.  </p>
<p>Right now we are waiting to hear from a visitor who mentioned he had a solution for this aspect of a IOS Web server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nitroware.org/legal-ios/possible-mysql-solutions-for-ios-apache-httpd-server/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Unofficial Guide for a Fully Functional Web Server on iOS</title>
		<link>http://www.nitroware.org/apache/unofficial-fully-functional-web-server-for-ios?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unofficial-fully-functional-web-server-for-ios</link>
		<comments>http://www.nitroware.org/apache/unofficial-fully-functional-web-server-for-ios#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:56:01 +0000</pubDate>
		<dc:creator>nitrx</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS PHP]]></category>
		<category><![CDATA[iOS Web Server]]></category>
		<category><![CDATA[iPhone Apache]]></category>
		<category><![CDATA[iPhone Web Server]]></category>

		<guid isPermaLink="false">http://www.nitroware.org/?p=33</guid>
		<description><![CDATA[I have found a reasonably good guide to making your iPhone iOS device into a Apache HTTPD server, and I will be updating this page as time goes on. This is only missing MySQL, and preferably a more native build &#8230; <a href="http://www.nitroware.org/apache/unofficial-fully-functional-web-server-for-ios">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have found a reasonably good guide to making your iPhone iOS device into a Apache HTTPD server, and I will be updating this page as time goes on. This is only missing MySQL, and preferably a more native build of apache.</p>
<p>First off, make sure you have jailbroken your iPhone iOS device, and have installed the app installer. Make sure you have the Community Sources installed or you will not be able to install Apache HTTPD server or PHP.</p>
<h3>Installation of Apache</h3>
<p>This is pretty painless.</p>
<p>First, install from the app installer the apache package. Once installed it will look as though nothing was installed (There is no icon added to the app list).</p>
<p><span id="more-33"></span></p>
<p>Reboot your iPhone iOS device, and open a safari window.</p>
<p>Type: http://127.0.0.1/</p>
<p>You should be greeted with an apache welcome screen! Congratulations, you now have Apache on your iPhone iOS device!</p>
<h3>Installing and Configuring PHP</h3>
<p>Installing PHP is a bit tougher but its not that bad.</p>
<ol>
<ol>
<li>Download the package through the App Installer, after installation it will give you the path to PHP. It should read: /opt/iphone/bin</li>
<li>Using winscp, or another sftp client ftp into your iPhone iOS device (You should be able to do this if you have setup the ssh/sftp for jailbreaking in the first place). Open the following file for editing: /etc/httpd/httpd.conf.Once you have the conf file open search for:
<p>Somewhere within this if add the following (I added it to the end right before the endif)</p>
<p>Code:<br />
<code>ScriptAlias /php /opt/iphone/bin<br />
AddType application/x-httpd-php .php<br />
Action application/x-httpd-php "/php/php-cgi"<br />
Save the conf file and reupload it.</code></li>
<li>Now using your sftp client download and edit /etc/profileAdd the PHP Path to the path details, after your done the PATH line should read:
<p>Code:<br />
<code>PATH = "/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin:/opt/iphone/bin"</code></li>
<li>Create a php file on your pc named index.php and add the following code to it:Code:<br />
<code><!--?php phpinfo(); ?--></code></li>
<li>Upload this file to Library/WebServer/Documents/. This is your apache web directory for your new server.Restart your iPhone iOS device again.</li>
<li>Fire up Safari again, and this time navigate to: http://127.0.0.1/index.php</li>
</ol>
</ol>
<p>You should now see a php information page with details about your PHP build information! Congrats, you now have a functioning Apache Webserver with PHP scripting Support on your iPhone iOS device! How cool is that?</p>
<h3>For those who like commands</h3>
<p>For those who like commands, heres some basic commands to run your server through shell.</p>
<p>Download Term-vt100 through the installer app &#8211; The best shell app for the iPhone iOS device.</p>
<p>Use the following commands to do various things to your server:</p>
<p><strong>apachectl start</strong> -&gt;This starts the apache service and loads the httpd.conf file.</p>
<p><strong>apachectl restart</strong> -&gt; This reloads the apache service, and will reload the httpd.conf file. Useful if you make changes on the go and wish to restart apache without having to reboot.</p>
<p><strong>apachectl stop</strong> -&gt; Stops the apache server.</p>
<p>I hope it all works for you, if not please let me know and I will fix the tutorial, It is however working fine for me! Goodluck!</p>
<p>More forum content related to iphone apache server:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nitroware.org/apache/unofficial-fully-functional-web-server-for-ios/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iApache iOS HTTP Server</title>
		<link>http://www.nitroware.org/apache/iapache?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iapache</link>
		<comments>http://www.nitroware.org/apache/iapache#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:38:18 +0000</pubDate>
		<dc:creator>nitrx</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS Web Server]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone Apache]]></category>
		<category><![CDATA[iPhone Web Server]]></category>

		<guid isPermaLink="false">http://www.nitroware.org/?p=24</guid>
		<description><![CDATA[The first step in the process of turning a iOS device into a true web server is getting a real build of Apache for iOS. I giving it an original name iApache seems like a valid, but humorous, name; even &#8230; <a href="http://www.nitroware.org/apache/iapache">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_25" class="wp-caption alignright" style="width: 160px"><a href="http://www.nitroware.org/wp-content/uploads/2011/08/apache_logo.gif"><img src="http://www.nitroware.org/wp-content/uploads/2011/08/apache_logo.gif" alt="Apache iApache HTTP server for iPhone iOS" title="Apache iApache HTTP server for iPhone iOS" width="150" height="78" class="size-full wp-image-25" /></a><p class="wp-caption-text">Apache HTTP Server Project</p></div><br />
The first step in the process of turning a iOS device into a true web server is getting a real build of Apache for iOS.  </p>
<p>I giving it an original name iApache seems like a valid, but humorous, name; even though it should in theory just be httpd compiled for arm.</p>
<p><span id="more-24"></span></p>
<p>I have found a number of pre-compiled versions of apache (like that on OSx), however I do not know how or where they were compiled, and furthermore if they are legal/ethical.  Therefore I will not post these, rather I would like to find someone who knows how to, or has compiled/cross-compiled the true apache server for the ARM processor.  </p>
<p>If anybody knows how to cross compile </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nitroware.org/apache/iapache/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jailbreak your iPhone&#8230; Legally!</title>
		<link>http://www.nitroware.org/legal-ios/jailbreak-your-iphone-legally?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jailbreak-your-iphone-legally</link>
		<comments>http://www.nitroware.org/legal-ios/jailbreak-your-iphone-legally#comments</comments>
		<pubDate>Wed, 03 Aug 2011 03:57:17 +0000</pubDate>
		<dc:creator>nitrx</dc:creator>
				<category><![CDATA[Legal iOS]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS Web Server]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone Apache]]></category>
		<category><![CDATA[iPhone Web Server]]></category>
		<category><![CDATA[Legal]]></category>

		<guid isPermaLink="false">http://www.nitroware.org/?p=4</guid>
		<description><![CDATA[The Library of Congress finally ruled to allow: Computer programs that enable wireless telephone handsets to execute software applications, where circumvention is accomplished for the sole purpose of enabling interoperability of such applications, when they have been lawfully obtained, with &#8230; <a href="http://www.nitroware.org/legal-ios/jailbreak-your-iphone-legally">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Library of Congress finally ruled to allow:</p>
<blockquote><p>Computer programs that enable wireless telephone handsets to execute software applications, where circumvention is accomplished for the sole purpose of enabling interoperability of such applications, when they have been lawfully obtained, with computer programs on the telephone handset.</p></blockquote>
<p>Which means the very existence of this website can be deemed legal!</p>
<p>In the future, we hope to be a hub for iPhone (iOS) web server technology.  We believe that iOS devices are the future of the internet, due to their compact size, affordable nature, and solid state construction.</p>
<p>Expect more posts to come!</p>
<p>For more info on this ruling, see:</p>
<p><a href="http://www.copyright.gov/1201/" rel="nofollow" target="_blank">U.S. Copyright Office &#8211; Anticircumvention Rulemaking</a><br />
(english speak) <a href="http://www.loc.gov/wiseguide/sept10/jailbreak.html" rel="nofollow" target="_blank">The Wise Guide : It&#8217;s a Jailbreak!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nitroware.org/legal-ios/jailbreak-your-iphone-legally/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get iOS running a Web Server</title>
		<link>http://www.nitroware.org/apache/get-ios-running-a-web-server?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-ios-running-a-web-server</link>
		<comments>http://www.nitroware.org/apache/get-ios-running-a-web-server#comments</comments>
		<pubDate>Wed, 03 Aug 2011 04:25:40 +0000</pubDate>
		<dc:creator>nitrx</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[iOS MySQL Server]]></category>
		<category><![CDATA[iOS PHP]]></category>
		<category><![CDATA[iOS Web Server]]></category>
		<category><![CDATA[iPhone Apache]]></category>
		<category><![CDATA[iPhone Web Server]]></category>

		<guid isPermaLink="false">http://www.nitroware.org/?p=7</guid>
		<description><![CDATA[We need to break down exactly what the goal is&#8230; Our goal is to make any iPhone device into a web server (ideally apache/httpd server) with MySQL and PHP support. This is also known as a iOS LAMP server. Presently, &#8230; <a href="http://www.nitroware.org/apache/get-ios-running-a-web-server">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_12" class="wp-caption alignright" style="width: 159px"><a href="http://www.nitroware.org/wp-content/uploads/2011/08/overview-safari-20101116.jpeg"><img class="size-full wp-image-12" title="iPhone Safari" src="http://www.nitroware.org/wp-content/uploads/2011/08/overview-safari-20101116.jpeg" alt="" width="149" height="239" /></a><p class="wp-caption-text">iPhone Running Safari... Soon to be running localhost.</p></div>
<p>We need to break down exactly what the goal is&#8230; Our goal is to make any <a title="Jailbreak your iPhone… Legally!" href="http://www.nitroware.org/legal-ios/jailbreak-your-iphone-legally">iPhone device</a> into a web server (ideally apache/httpd server) with MySQL and PHP support.</p>
<p>This is also known as a iOS LAMP server.</p>
<p>Presently, the only working items in existence is lighttpd, and PHP. Personally, I am not a fan of lighttpd&#8230; it is too buggy, and too vulnerable, and no MySQL.</p>
<blockquote><p>We need to be able to have a full blown LAMP server running, and this site is geared to be the development site and hub of this technology.</p></blockquote>
<p>I have rounded up a few existing posts that already have this topic, but no solid answer exits yet.<br />
<span id="more-7"></span></p>
<p>http://modmyi.com/forums/general-iphone-chat/734682-question-apache-php-mysql-running-webserver-idevice-ios-4-0-a.html</p>
<p>If you know how to cross-compile any of these items, and have them legally, please leave a comment describing this, and I will get it publicized.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nitroware.org/apache/get-ios-running-a-web-server/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

