Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/firstandthird/arc-macro-custom-domain


https://github.com/firstandthird/arc-macro-custom-domain

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        

# arc-macro-custom-domain

- can override domain with `ARC_DOMAIN`

## Example .arc
```
@app
example

@http
get /

@macros
arc-macro-custom-domain

@customDomain
zoneName {route53 host}
productionCertArn {production arn}
productionDomain {production domain}
stagingCertArn {staging arn}
stagingDomain {staging domain}
```

## Example .arc with http api
```
@app
example

@http
get /

@macros
architect/macro-http-api
arc-macro-custom-domain

@customDomain
zoneName {route53 host}
productionCertArn {production arn}
productionDomain {production domain}
stagingCertArn {staging arn}
stagingDomain {staging domain}
httpAPI true
```