Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Set timeout for ad displaying (15 - 900 minsec).

  2. Submit settings.

...

Panel
panelIconIdatlassian-light_bulb_on
panelIcon:light_bulb_on:
panelIconText:light_bulb_on:
bgColor#DEEBFF

Configure a local server to store ads:

If the equipment does not have access to the Internet, and there is no way to place files on any external resource, you can set up your file storage on a local server. 

Here is an example of settings for the Ubuntu operating system:

  1. Install the npm service.

    Code Block
    apt install npm
  2. Install the HTTP-server service.

    Code Block
    npm install --global http-server
  3. After installation is complete, you can run the service.

    Code Block
    http-server . > http.log 2>&1 &

By default, the server will be available on port 8080, and the files will be stored in the ./public directory (if there is no such directory, then the files will be in the users home directory). The service itself will start running in the background.

However, we recommend you create a new directory, so that users do not have access to your servers system directories. To do this, run the following commands:

...