An open API service indexing awesome lists of open source software.

https://github.com/thunder/apache-shiva-php-action

Use after shivammathur/setup-php to use Apache.
https://github.com/thunder/apache-shiva-php-action

Last synced: 3 months ago
JSON representation

Use after shivammathur/setup-php to use Apache.

Awesome Lists containing this project

README

          

# apache-shiva-php-action
This is a GitHub action that runs Apache with mod_php to serve a website. Use after [Setup PHP in GitHub Actions](https://github.com/shivammathur/setup-php).

**Assumes you are using Ubuntu**

## Example usage

```yaml
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Setup Apache
uses: thunder/apache-shiva-php-action@v1
with:
php-version: '7.4'
site-directory: /path/to/code
# Defaults to 8888
http-port: 8080
```