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.
- Host: GitHub
- URL: https://github.com/thunder/apache-shiva-php-action
- Owner: thunder
- License: mit
- Created: 2021-05-04T11:24:33.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-01T11:40:46.000Z (12 months ago)
- Last Synced: 2025-07-01T11:44:38.479Z (12 months ago)
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```