What's new

[TUTORIAL] WordPress Blog Server through Entware

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Aicloud uses lighttpd. In the dir / tmp there are the configuration files and the various $ SOCHETs to make the various ports work. It would be interesting if a LAMP server could already be configured there

(tradotto con Google)

ok install lighttpd
Code:
opkg install lighttpd
copy S80lighttpd to lightP
Code:
 cp /opt/etc/init.d/S80lighttpd /opt/etc/init.d/lightP
remove lighttpd
Code:
opkg remove lighttpd

edit /tmp/lighttpd.conf and insert line

Code:
server.port=8082

##
include "/tmp/mnt/Elements/entware/etc/lighttpd/forIcloud/lightP.conf"

server.document-root="/tmp/lighttpd/www"
Elements is my HD
create dir
Code:
cd /opt/etc/lighttpd
mkdir forIcloud
edit lightP.conf
Code:
 nano /opt/etc/lighttpd/forIcloud/lightP.conf
and insert
Code:
$SERVER["socket"]==":81"{
  server.document-root        = "/opt/share/www"
  server.upload-dirs          = ( "/opt/tmp" )
  server.errorlog             = "/opt/var/log/lighttpd/error.log"
  index-file.names            = ( "index.php", "index.html",
                                "index.htm", "default.htm",
                              )

 }
restart lighttpd (aicloud)
Code:
/opt/etc/init.d/lightP restart
now port 81 is ok but see 451-
 
Last edited:
I'm very far from coding. I came to this forum to learn the basics of WordPress. Your tutorial will help more skilled coders, and developers understand the program. This guide is a too high level for me right now. You know, I only own WordPress in the form of templates or as a prescriptive editor creation. So I'd rather create my WordPress as intranet only with the help of constant consultation with experienced developers and domain experts in Wordpress. Yes, tutorials help me learn a lot, but talking to people live and watching them work on my site helps me more. What do you think about learning from other people's examples? I've been given access to all the documents, and I can observe all the work in real-time.
 
Last edited:
Similar threads

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top