Software Metadata Definitions
The will provide a base library of metadata definitions for various common software products, components, and libraries that may exist on particular image (or volume or instance). These metadata definitions will make it easier for end users and admins to easily describe the software and its properties. This information will enable an improved and faster user experience for applying software metadata, searching based on software metadata, and viewing the software information about an image. Various improvements in horizon are underway to take advantage of this metadata. For example, a user launching an instance will be able to expand the image row to see additional information about the image. This will include providing the metadata definition for properties on the image. This same information will also be visible from the image and instance details page. Change-Id: I63fa40f9eae8dfb602cf0c9c3f0dd7f0d1a65af0 Implements: blueprint software-metadefs
This commit is contained in:
parent
b6f76e0a11
commit
01ace04438
333
etc/metadefs/software-databases.json
Executable file
333
etc/metadefs/software-databases.json
Executable file
@ -0,0 +1,333 @@
|
||||
{
|
||||
"namespace": "OS::Software::DBMS",
|
||||
"display_name": "Database Software",
|
||||
"description": "A database is an organized collection of data. The data is typically organized to model aspects of reality in a way that supports processes requiring information. Database management systems are computer software applications that interact with the user, other applications, and the database itself to capture and analyze data. (http://en.wikipedia.org/wiki/Database)",
|
||||
"visibility": "public",
|
||||
"protected": true,
|
||||
"resource_type_associations": [
|
||||
{
|
||||
"name": "OS::Glance::Image"
|
||||
},
|
||||
{
|
||||
"name": "OS::Cinder::Volume",
|
||||
"properties_target": "image"
|
||||
},
|
||||
{
|
||||
"name": "OS::Nova::Instance"
|
||||
},
|
||||
{
|
||||
"name": "OS::Trove::Instance"
|
||||
}
|
||||
],
|
||||
"objects": [
|
||||
{
|
||||
"name": "MySQL",
|
||||
"description": "MySQL is an object-relational database management system (ORDBMS). The MySQL development project has made its source code available under the terms of the GNU General Public License, as well as under a variety of proprietary agreements. MySQL was owned and sponsored by a single for-profit firm, the Swedish company MySQL AB, now owned by Oracle Corporation. MySQL is a popular choice of database for use in web applications, and is a central component of the widely used LAMP open source web application software stack (and other 'AMP' stacks). (http://en.wikipedia.org/wiki/MySQL)",
|
||||
"properties": {
|
||||
"sw_database_mysql_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of MySQL.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_mysql_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "The configured TCP/IP port which MySQL listens for incoming connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 3606
|
||||
},
|
||||
"sw_database_mysql_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string",
|
||||
"default": "root"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "PostgreSQL",
|
||||
"description": "PostgreSQL, often simply 'Postgres', is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards-compliance. PostgreSQL is cross-platform and runs on many operating systems. (http://en.wikipedia.org/wiki/PostgreSQL)",
|
||||
"properties": {
|
||||
"sw_database_postgresql_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of PostgreSQL.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_postgresql_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which PostgreSQL is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 5432
|
||||
},
|
||||
"sw_database_postgresql_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string",
|
||||
"default": "postgres"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SQL Server",
|
||||
"description": "Microsoft SQL Server is a relational database management system developed by Microsoft. There are at least a dozen different editions of Microsoft SQL Server aimed at different audiences and for workloads ranging from small single-machine applications to large Internet-facing applications with many concurrent users. Its primary query languages are T-SQL and ANSI SQL. (http://en.wikipedia.org/wiki/Microsoft_SQL_Server)",
|
||||
"properties": {
|
||||
"sw_database_sqlserver_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Microsoft SQL Server.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_sqlserver_edition": {
|
||||
"title": "Edition",
|
||||
"description": "SQL Server is available in multiple editions, with different feature sets and targeting different users.",
|
||||
"type": "string",
|
||||
"default": "Express",
|
||||
"enum": [
|
||||
"Datacenter",
|
||||
"Enterprise",
|
||||
"Standard",
|
||||
"Web",
|
||||
"Business Intelligence",
|
||||
"Workgroup",
|
||||
"Express",
|
||||
"Compact (SQL CE)",
|
||||
"Developer",
|
||||
"Embedded (SSEE)",
|
||||
"Express",
|
||||
"Fast Track",
|
||||
"LocalDB",
|
||||
"Parallel Data Warehouse (PDW)",
|
||||
"Business Intelligence",
|
||||
"Datawarehouse Appliance Edition"
|
||||
]
|
||||
},
|
||||
"sw_database_sqlserver_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which SQL Server is to listen for connections from client applications. The default SQL Server port is 1433, and client ports are assigned a random value between 1024 and 5000.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 1433
|
||||
},
|
||||
"sw_database_postsqlserver_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string",
|
||||
"default": "sa"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Oracle",
|
||||
"description": "Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system produced and marketed by Oracle Corporation. (http://en.wikipedia.org/wiki/Oracle_Database)",
|
||||
"properties": {
|
||||
"sw_database_oracle_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Oracle.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_oracle_edition": {
|
||||
"title": "Edition",
|
||||
"description": "Over and above the different versions of the Oracle database management software developed over time, Oracle Corporation subdivides its product into varying editions.",
|
||||
"type": "string",
|
||||
"default": "Express",
|
||||
"enum": [
|
||||
"Enterprise",
|
||||
"Standard",
|
||||
"Standard Edition One",
|
||||
"Express (XE)",
|
||||
"Workgroup",
|
||||
"Lite"
|
||||
]
|
||||
},
|
||||
"sw_database_oracle_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which Oracle is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 1521
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "DB2",
|
||||
"description": "IBM DB2 is a family of database server products developed by IBM. These products all support the relational model, but in recent years some products have been extended to support object-relational features and non-relational structures, in particular XML. (http://en.wikipedia.org/wiki/IBM_DB2)",
|
||||
"properties": {
|
||||
"sw_database_db2_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of DB2.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_db2_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which DB2 is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 5432
|
||||
},
|
||||
"sw_database_db2_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "MongoDB",
|
||||
"description": "MongoDB is a cross-platform document-oriented database. Classified as a NoSQL database, MongoDB uses JSON-like documents with dynamic schemas (MongoDB calls the format BSON), making the integration of data in certain types of applications easier and faster. Released under a combination of the GNU Affero General Public License and the Apache License, MongoDB is free and open-source software. (http://en.wikipedia.org/wiki/MongoDB)",
|
||||
"properties": {
|
||||
"sw_database_mongodb_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of MongoDB.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_mongodb_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which MongoDB is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 27017
|
||||
},
|
||||
"sw_database_mongodb_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Couchbase Server",
|
||||
"description": "Couchbase Server, originally known as Membase, is an open source, distributed (shared-nothing architecture) NoSQL document-oriented database that is optimized for interactive applications. These applications must serve many concurrent users by creating, storing, retrieving, aggregating, manipulating and presenting data. In support of these kinds of application needs, Couchbase is designed to provide easy-to-scale key-value or document access with low latency and high sustained throughput. (http://en.wikipedia.org/wiki/Couchbase_Server)",
|
||||
"properties": {
|
||||
"sw_database_couchbaseserver_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Couchbase Server.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_couchbaseserver_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which Couchbase is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 11211
|
||||
},
|
||||
"sw_database_couchbaseserver_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string",
|
||||
"default": "admin"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Redis",
|
||||
"description": "Redis is a data structure server (NoSQL). It is open-source, networked, in-memory, and stores keys with optional durability. The development of Redis has been sponsored by Pivotal Software since May 2013; before that, it was sponsored by VMware. The name Redis means REmote DIctionary Server. (http://en.wikipedia.org/wiki/Redis)",
|
||||
"properties": {
|
||||
"sw_database_redis_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Redis.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_redis_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which Redis is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 6379
|
||||
},
|
||||
"sw_database_redis_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string",
|
||||
"default": "admin"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CouchDB",
|
||||
"description": "Apache CouchDB, commonly referred to as CouchDB, is an open source NoSQL database. It is a NoSQL database that uses JSON to store data, JavaScript as its query language using MapReduce, and HTTP for an API. One of its distinguishing features is multi-master replication. CouchDB was first released in 2005 and later became an Apache project in 2008. (http://en.wikipedia.org/wiki/CouchDB)",
|
||||
"properties": {
|
||||
"sw_database_couchdb_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of CouchDB.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_couchdb_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which CouchDB is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 5984
|
||||
},
|
||||
"sw_database_couchdb_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Apache Cassandra",
|
||||
"description": "Apache Cassandra is an open source distributed NoSQL database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. (http://en.wikipedia.org/wiki/Apache_Cassandra)",
|
||||
"properties": {
|
||||
"sw_database_cassandra_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Apache Cassandra.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_cassandra_listen_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which Cassandra is to listen for connections from client applications.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 9160
|
||||
},
|
||||
"sw_database_cassandra_admin": {
|
||||
"title": "Admin User",
|
||||
"description": "The primary user with privileges to perform administrative operations.",
|
||||
"type": "string",
|
||||
"default": "cassandra"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "HBase",
|
||||
"description": "HBase is an open source, non-relational (NoSQL), distributed database modeled after Google's BigTable and written in Java. It is developed as part of Apache Software Foundation's Apache Hadoop project and runs on top of HDFS (Hadoop Distributed Filesystem), providing BigTable-like capabilities for Hadoop. (http://en.wikipedia.org/wiki/Apache_HBase)",
|
||||
"properties": {
|
||||
"sw_database_hbase_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of HBase.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Hazlecast",
|
||||
"description": "In computing, Hazelcast is an in-memory open source software data grid based on Java. By having multiple nodes form a cluster, data is evenly distributed among the nodes. This allows for horizontal scaling both in terms of available storage space and processing power. Backups are also distributed in a similar fashion to other nodes, based on configuration, thereby protecting against single node failure. (http://en.wikipedia.org/wiki/Hazelcast)",
|
||||
"properties": {
|
||||
"sw_database_hazlecast_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Hazlecast.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_database_hazlecast_port": {
|
||||
"title": "Listen Port",
|
||||
"description": "Specifies the TCP/IP port or local Unix domain socket file extension on which Hazlecast is to listen for connections between members.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 5701
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
76
etc/metadefs/software-runtimes.json
Executable file
76
etc/metadefs/software-runtimes.json
Executable file
@ -0,0 +1,76 @@
|
||||
{
|
||||
"namespace": "OS::Software::Runtimes",
|
||||
"display_name": "Runtime Environment",
|
||||
"description": "Software is written in a specific programming language and the language must execute within a runtime environment. The runtime environment provides an abstraction to utilizing a computer's processor, memory (RAM), and other system resources.",
|
||||
"visibility": "public",
|
||||
"protected": true,
|
||||
"resource_type_associations": [
|
||||
{
|
||||
"name": "OS::Glance::Image"
|
||||
},
|
||||
{
|
||||
"name": "OS::Cinder::Volume",
|
||||
"properties_target": "image"
|
||||
},
|
||||
{
|
||||
"name": "OS::Nova::Instance"
|
||||
}
|
||||
],
|
||||
"objects": [
|
||||
{
|
||||
"name": "PHP",
|
||||
"description": "PHP is a server-side scripting language designed for web development but also used as a general-purpose programming language. PHP code can be simply mixed with HTML code, or it can be used in combination with various templating engines and web frameworks. PHP code is usually processed by a PHP interpreter, which is usually implemented as a web server's native module or a Common Gateway Interface (CGI) executable. After the PHP code is interpreted and executed, the web server sends resulting output to its client, usually in form of a part of the generated web page – for example, PHP code can generate a web page's HTML code, an image, or some other data. PHP has also evolved to include a command-line interface (CLI) capability and can be used in standalone graphical applications. (http://en.wikipedia.org/wiki/PHP)",
|
||||
"properties": {
|
||||
"sw_runtime_php_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of PHP.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Python",
|
||||
"description": "Python is a widely used general-purpose, high-level programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C++ or Java. The language provides constructs intended to enable clear programs on both a small and large scale. Python supports multiple programming paradigms, including object-oriented, imperative and functional programming or procedural styles. It features a dynamic type system and automatic memory management and has a large and comprehensive standard library. (http://en.wikipedia.org/wiki/Python_(programming_language))",
|
||||
"properties": {
|
||||
"sw_runtime_python_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of python.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Java",
|
||||
"description": "Java is a functional computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. It is intended to let application developers write once, run anywhere (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of computer architecture. (http://en.wikipedia.org/wiki/Java_(programming_language))",
|
||||
"properties": {
|
||||
"sw_runtime_java_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Java.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Ruby",
|
||||
"description": "Ruby is a dynamic, reflective, object-oriented, general-purpose programming language. It was designed and developed in the mid-1990s by Yukihiro Matsumoto in Japan. According to its authors, Ruby was influenced by Perl, Smalltalk, Eiffel, Ada, and Lisp. It supports multiple programming paradigms, including functional, object-oriented, and imperative. It also has a dynamic type system and automatic memory management. (http://en.wikipedia.org/wiki/Python_(programming_language))",
|
||||
"properties": {
|
||||
"sw_runtime_ruby_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Ruby.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Perl",
|
||||
"description": "Perl is a family of high-level, general-purpose, interpreted, dynamic programming languages. The languages in this family include Perl 5 and Perl 6. Though Perl is not officially an acronym, there are various backronyms in use, the most well-known being Practical Extraction and Reporting Language (http://en.wikipedia.org/wiki/Perl)",
|
||||
"properties": {
|
||||
"sw_runtime_perl_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Perl.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
102
etc/metadefs/software-webservers.json
Executable file
102
etc/metadefs/software-webservers.json
Executable file
@ -0,0 +1,102 @@
|
||||
{
|
||||
"namespace": "OS::Software::WebServers",
|
||||
"display_name": "Web Servers",
|
||||
"description": "A web server is a computer system that processes requests via HTTP, the basic network protocol used to distribute information on the World Wide Web. The most common use of web servers is to host websites, but there are other uses such as gaming, data storage, running enterprise applications, handling email, FTP, or other web uses. (http://en.wikipedia.org/wiki/Web_server)",
|
||||
"visibility": "public",
|
||||
"protected": true,
|
||||
"resource_type_associations": [
|
||||
{
|
||||
"name": "OS::Glance::Image"
|
||||
},
|
||||
{
|
||||
"name": "OS::Cinder::Volume",
|
||||
"properties_target": "image"
|
||||
},
|
||||
{
|
||||
"name": "OS::Nova::Instance"
|
||||
}
|
||||
],
|
||||
"objects": [
|
||||
{
|
||||
"name": "Apache HTTP Server",
|
||||
"description": "The Apache HTTP Server, colloquially called Apache, is a Web server application notable for playing a key role in the initial growth of the World Wide Web. Apache is developed and maintained by an open community of developers under the auspices of the Apache Software Foundation. Most commonly used on a Unix-like system, the software is available for a wide variety of operating systems, including Unix, FreeBSD, Linux, Solaris, Novell NetWare, OS X, Microsoft Windows, OS/2, TPF, OpenVMS and eComStation. Released under the Apache License, Apache is open-source software. (http://en.wikipedia.org/wiki/Apache_HTTP_Server)",
|
||||
"properties": {
|
||||
"sw_webserver_apache_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Apache.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_webserver_apache_http_port": {
|
||||
"title": "HTTP Port",
|
||||
"description": "The configured TCP/IP port on which the web server listens for incoming HTTP connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 80
|
||||
},
|
||||
"sw_webserver_apache_https_port": {
|
||||
"title": "HTTPS Port",
|
||||
"description": "The configured TCP/IP port on which the web server listens for incoming HTTPS connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 443
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Nginx",
|
||||
"description": "Nginx (pronounced 'engine-x') is an open source reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer, HTTP cache, and a web server (origin server). The nginx project started with a strong focus on high concurrency, high performance and low memory usage. It is licensed under the 2-clause BSD-like license and it runs on Linux, BSD variants, Mac OS X, Solaris, AIX, HP-UX, as well as on other *nix flavors. It also has a proof of concept port for Microsoft Windows. (http://en.wikipedia.org/wiki/Nginx)",
|
||||
"properties": {
|
||||
"sw_webserver_nginx_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of Nginx.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_webserver_nginx_http_port": {
|
||||
"title": "HTTP Port",
|
||||
"description": "The configured TCP/IP port on which the web server listens for incoming HTTP connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 80
|
||||
},
|
||||
"sw_webserver_nginx_https_port": {
|
||||
"title": "HTTPS Port",
|
||||
"description": "The configured TCP/IP port on which the web server listens for incoming HTTPS connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 443
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "IIS",
|
||||
"description": "Internet Information Services (IIS, formerly Internet Information Server) is an extensible web server created by Microsoft. IIS supports HTTP, HTTPS, FTP, FTPS, SMTP and NNTP. IIS is not turned on by default when Windows is installed. The IIS Manager is accessed through the Microsoft Management Console or Administrative Tools in the Control Panel. (http://en.wikipedia.org/wiki/Internet_Information_Services)",
|
||||
"properties": {
|
||||
"sw_webserver_iis_version": {
|
||||
"title": "Version",
|
||||
"description": "The specific version of IIS.",
|
||||
"type": "string"
|
||||
},
|
||||
"sw_webserver_iis_http_port": {
|
||||
"title": "HTTP Port",
|
||||
"description": "The configured TCP/IP port on which the web server listens for incoming HTTP connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 80
|
||||
},
|
||||
"sw_webserver_iis_https_port": {
|
||||
"title": "HTTPS Port",
|
||||
"description": "The configured TCP/IP port on which the web server listens for incoming HTTPS connections.",
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535,
|
||||
"default": 443
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user