123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import http from '@/lib/http'
- export interface NgxConfig {
- file_name?: string
- name: string
- upstreams?: NgxUpstream[]
- servers: NgxServer[]
- custom?: string
- }
- export interface NgxServer {
- directives?: NgxDirective[]
- locations?: NgxLocation[]
- comments?: string
- }
- export interface NgxUpstream {
- name: string
- directives: NgxDirective[]
- comments?: string
- }
- export interface NgxDirective {
- idx?: number
- directive: string
- params: string
- comments?: string
- }
- export interface NgxLocation {
- path: string
- content: string
- comments: string
- }
- const ngx = {
- build_config(ngxConfig: NgxConfig) {
- return http.post('/ngx/build_config', ngxConfig)
- },
- tokenize_config(content: string) {
- return http.post('/ngx/tokenize_config', { content })
- },
- format_code(content: string) {
- return http.post('/ngx/format_code', { content })
- },
- status() {
- return http.get('/nginx/status')
- },
- reload() {
- return http.post('/nginx/reload')
- },
- restart() {
- return http.post('/nginx/restart')
- },
- test() {
- return http.post('/nginx/test')
- },
- }
- export default ngx
|