Giter Site home page Giter Site logo

Support non apache webserver about htmly HOT 3 CLOSED

danpros avatar danpros commented on August 19, 2024
Support non apache webserver

from htmly.

Comments (3)

danpros avatar danpros commented on August 19, 2024

Hi Thomas,

Thanks, we have huge time differences here 😄

Not tested yet for lighttpd but I already tested it on Nginx, below is the basic configuration for default.conf:

server {
  listen 80;

  server_name example.com www.example.com;
  root /usr/share/nginx/html;

  access_log /var/log/nginx/access.log;
  error_log /var/log/nginx/error.log error;

  index index.php;

  location ~ /config/ {
     deny all;
  }

  location / {
    try_files $uri $uri/ /index.php;
  }

  location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
        include        fastcgi_params;
  }
}

Change the root to your needs. We should improve/create wiki page for server configurations etc.

Regards,

from htmly.

fanningert avatar fanningert commented on August 19, 2024

Here a working config for lighttp.
Not perfect, but working. HTMLy is in the root directory in this example

$HTTP["url"] =~ "^/config" {
  url.access-deny = ( "" )
}

url.rewrite-once = (
  "^/(themes|system|vendor)/(.*)" => "$0",
  "^/(.*\.php)" => "$0",

  # Everything else is handles by Wordpress
  "^/(.*)$" => "/index.php/$1"
)

from htmly.

danpros avatar danpros commented on August 19, 2024

Thanks Thomas,

I updating the default.conf for Nginx, block any access to config folder. I should creating docs on the official site, the logo is coming soon and I will releasing new version for that.

Update: let me know if you have any idea etc.

from htmly.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.